summaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2012-03-17 11:20:46 -0700
committerBrad Fitzpatrick <bradfitz@golang.org>2012-03-17 11:20:46 -0700
commitfda3866beb8f3dfb5cae23d1b1c7343fa6b735c1 (patch)
tree78d433ac89b765ae8cf831c8291a6ca5564bc31f /api
parent39bcd0fd61d975b2b80ae8a615baa059b7ebdac8 (diff)
downloadgo-fda3866beb8f3dfb5cae23d1b1c7343fa6b735c1.tar.gz
build: catch API changes during build
Adds new file api/go1.txt, locking down the current API. Any changes to the API will need to update that file. run.bash (but not make.bash, or Windows) will check for accidental API changes. R=golang-dev, dsymonds, rsc CC=golang-dev http://codereview.appspot.com/5820070
Diffstat (limited to 'api')
-rw-r--r--api/go1.txt24524
1 files changed, 24524 insertions, 0 deletions
diff --git a/api/go1.txt b/api/go1.txt
new file mode 100644
index 000000000..c0d231e0b
--- /dev/null
+++ b/api/go1.txt
@@ -0,0 +1,24524 @@
+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([]byte) (int, error)
+pkg archive/tar, method (*Writer) Close() error
+pkg archive/tar, method (*Writer) Flush() error
+pkg archive/tar, method (*Writer) Write([]byte) (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 byte
+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 []byte
+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) ([]byte, error)
+pkg bufio, method (*Reader) Read([]byte) (int, error)
+pkg bufio, method (*Reader) ReadByte() (byte, error)
+pkg bufio, method (*Reader) ReadBytes(byte) ([]byte, error)
+pkg bufio, method (*Reader) ReadLine() ([]byte, bool, error)
+pkg bufio, method (*Reader) ReadRune() (rune, int, error)
+pkg bufio, method (*Reader) ReadSlice(byte) ([]byte, error)
+pkg bufio, method (*Reader) ReadString(byte) (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([]byte) (int, error)
+pkg bufio, method (*Writer) WriteByte(byte) error
+pkg bufio, method (*Writer) WriteRune(rune) (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) ([]byte, error)
+pkg bufio, method (ReadWriter) Read([]byte) (int, error)
+pkg bufio, method (ReadWriter) ReadByte() (byte, error)
+pkg bufio, method (ReadWriter) ReadBytes(byte) ([]byte, error)
+pkg bufio, method (ReadWriter) ReadLine() ([]byte, bool, error)
+pkg bufio, method (ReadWriter) ReadRune() (rune, int, error)
+pkg bufio, method (ReadWriter) ReadSlice(byte) ([]byte, error)
+pkg bufio, method (ReadWriter) ReadString(byte) (string, error)
+pkg bufio, method (ReadWriter) UnreadByte() error
+pkg bufio, method (ReadWriter) UnreadRune() error
+pkg bufio, method (ReadWriter) Write([]byte) (int, error)
+pkg bufio, method (ReadWriter) WriteByte(byte) error
+pkg bufio, method (ReadWriter) WriteRune(rune) (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([]byte) int
+pkg bytes, func Contains([]byte) bool
+pkg bytes, func Count([]byte) int
+pkg bytes, func Equal([]byte) bool
+pkg bytes, func EqualFold([]byte) bool
+pkg bytes, func Fields([]byte) [][]byte
+pkg bytes, func FieldsFunc([]byte, func(rune) bool) [][]byte
+pkg bytes, func HasPrefix([]byte) bool
+pkg bytes, func HasSuffix([]byte) bool
+pkg bytes, func Index([]byte) int
+pkg bytes, func IndexAny([]byte, string) int
+pkg bytes, func IndexByte([]byte, byte) int
+pkg bytes, func IndexFunc([]byte, func(rune) bool) int
+pkg bytes, func IndexRune([]byte, rune) int
+pkg bytes, func Join([][]byte, []byte) []byte
+pkg bytes, func LastIndex([]byte) int
+pkg bytes, func LastIndexAny([]byte, string) int
+pkg bytes, func LastIndexFunc([]byte, func(rune) bool) int
+pkg bytes, func Map(func(rune) rune, []byte) []byte
+pkg bytes, func NewBuffer([]byte) *Buffer
+pkg bytes, func NewBufferString(string) *Buffer
+pkg bytes, func NewReader([]byte) *Reader
+pkg bytes, func Repeat([]byte, int) []byte
+pkg bytes, func Replace([]byte, int) []byte
+pkg bytes, func Runes([]byte) []rune
+pkg bytes, func Split([]byte) [][]byte
+pkg bytes, func SplitAfter([]byte) [][]byte
+pkg bytes, func SplitAfterN([]byte, int) [][]byte
+pkg bytes, func SplitN([]byte, int) [][]byte
+pkg bytes, func Title([]byte) []byte
+pkg bytes, func ToLower([]byte) []byte
+pkg bytes, func ToLowerSpecial(unicode.SpecialCase, []byte) []byte
+pkg bytes, func ToTitle([]byte) []byte
+pkg bytes, func ToTitleSpecial(unicode.SpecialCase, []byte) []byte
+pkg bytes, func ToUpper([]byte) []byte
+pkg bytes, func ToUpperSpecial(unicode.SpecialCase, []byte) []byte
+pkg bytes, func Trim([]byte, string) []byte
+pkg bytes, func TrimFunc([]byte, func(rune) bool) []byte
+pkg bytes, func TrimLeft([]byte, string) []byte
+pkg bytes, func TrimLeftFunc([]byte, func(rune) bool) []byte
+pkg bytes, func TrimRight([]byte, string) []byte
+pkg bytes, func TrimRightFunc([]byte, func(rune) bool) []byte
+pkg bytes, func TrimSpace([]byte) []byte
+pkg bytes, method (*Buffer) Bytes() []byte
+pkg bytes, method (*Buffer) Len() int
+pkg bytes, method (*Buffer) Next(int) []byte
+pkg bytes, method (*Buffer) Read([]byte) (int, error)
+pkg bytes, method (*Buffer) ReadByte() (byte, error)
+pkg bytes, method (*Buffer) ReadBytes(byte) ([]byte, error)
+pkg bytes, method (*Buffer) ReadFrom(io.Reader) (int64, error)
+pkg bytes, method (*Buffer) ReadRune() (rune, int, error)
+pkg bytes, method (*Buffer) ReadString(byte) (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([]byte) (int, error)
+pkg bytes, method (*Buffer) WriteByte(byte) error
+pkg bytes, method (*Buffer) WriteRune(rune) (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([]byte) (int, error)
+pkg bytes, method (*Reader) ReadAt([]byte, int64) (int, error)
+pkg bytes, method (*Reader) ReadByte() (byte, error)
+pkg bytes, method (*Reader) ReadRune() (rune, 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, []byte) io.ReadCloser
+pkg compress/flate, func NewWriter(io.Writer, int) (*Writer, error)
+pkg compress/flate, func NewWriterDict(io.Writer, int, []byte) (*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([]byte) (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([]byte) (int, error)
+pkg compress/flate, type Reader interface, ReadByte() (byte, 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([]byte) (int, error)
+pkg compress/gzip, method (*Writer) Close() error
+pkg compress/gzip, method (*Writer) Write([]byte) (int, error)
+pkg compress/gzip, type Header struct
+pkg compress/gzip, type Header struct, Comment string
+pkg compress/gzip, type Header struct, Extra []byte
+pkg compress/gzip, type Header struct, ModTime time.Time
+pkg compress/gzip, type Header struct, Name string
+pkg compress/gzip, type Header struct, OS byte
+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, []byte) (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, []byte) (*Writer, error)
+pkg compress/zlib, method (*Writer) Close() error
+pkg compress/zlib, method (*Writer) Flush() error
+pkg compress/zlib, method (*Writer) Write([]byte) (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) 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)
+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([]byte) (cipher.Block, error)
+pkg crypto/aes, method (KeySizeError) Error() string
+pkg crypto/aes, type KeySizeError int
+pkg crypto/cipher, func NewCBCDecrypter(Block, []byte) BlockMode
+pkg crypto/cipher, func NewCBCEncrypter(Block, []byte) BlockMode
+pkg crypto/cipher, func NewCFBDecrypter(Block, []byte) Stream
+pkg crypto/cipher, func NewCFBEncrypter(Block, []byte) Stream
+pkg crypto/cipher, func NewCTR(Block, []byte) Stream
+pkg crypto/cipher, func NewOFB(Block, []byte) Stream
+pkg crypto/cipher, method (StreamReader) Read([]byte) (int, error)
+pkg crypto/cipher, method (StreamWriter) Close() error
+pkg crypto/cipher, method (StreamWriter) Write([]byte) (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([]byte)
+pkg crypto/cipher, type Block interface, Encrypt([]byte)
+pkg crypto/cipher, type BlockMode interface { BlockSize, CryptBlocks }
+pkg crypto/cipher, type BlockMode interface, BlockSize() int
+pkg crypto/cipher, type BlockMode interface, CryptBlocks([]byte)
+pkg crypto/cipher, type Stream interface { XORKeyStream }
+pkg crypto/cipher, type Stream interface, XORKeyStream([]byte)
+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([]byte) (cipher.Block, error)
+pkg crypto/des, func NewTripleDESCipher([]byte) (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, []byte) (*big.Int, error)
+pkg crypto/dsa, func Verify(*PublicKey, []byte, *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, []byte) (*big.Int, error)
+pkg crypto/ecdsa, func Verify(*PublicKey, []byte, *big.Int) bool
+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) ([]byte, *big.Int, error)
+pkg crypto/elliptic, func Marshal(Curve, *big.Int) []byte
+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, []byte) *big.Int
+pkg crypto/elliptic, method (*CurveParams) Add(*big.Int) (*big.Int, *big.Int)
+pkg crypto/elliptic, method (*CurveParams) Double(*big.Int) (*big.Int, *big.Int)
+pkg crypto/elliptic, method (*CurveParams) IsOnCurve(*big.Int) bool
+pkg crypto/elliptic, method (*CurveParams) Params() *CurveParams
+pkg crypto/elliptic, method (*CurveParams) ScalarBaseMult([]byte) (*big.Int, *big.Int)
+pkg crypto/elliptic, method (*CurveParams) ScalarMult(*big.Int, []byte) (*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
+pkg crypto/elliptic, type Curve interface, Double(*big.Int) *big.Int
+pkg crypto/elliptic, type Curve interface, IsOnCurve(*big.Int) bool
+pkg crypto/elliptic, type Curve interface, Params() *CurveParams
+pkg crypto/elliptic, type Curve interface, ScalarBaseMult([]byte) *big.Int
+pkg crypto/elliptic, type Curve interface, ScalarMult(*big.Int, []byte) *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, []byte) 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([]byte) (int, error)
+pkg crypto/rand, var Reader io.Reader
+pkg crypto/rc4, func NewCipher([]byte) (*Cipher, error)
+pkg crypto/rc4, method (*Cipher) Reset()
+pkg crypto/rc4, method (*Cipher) XORKeyStream([]byte)
+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, []byte, []byte) ([]byte, error)
+pkg crypto/rsa, func DecryptPKCS1v15(io.Reader, *PrivateKey, []byte) ([]byte, error)
+pkg crypto/rsa, func DecryptPKCS1v15SessionKey(io.Reader, *PrivateKey, []byte, []byte) error
+pkg crypto/rsa, func EncryptOAEP(hash.Hash, io.Reader, *PublicKey, []byte, []byte) ([]byte, error)
+pkg crypto/rsa, func EncryptPKCS1v15(io.Reader, *PublicKey, []byte) ([]byte, 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, []byte) ([]byte, error)
+pkg crypto/rsa, func VerifyPKCS1v15(*PublicKey, crypto.Hash, []byte, []byte) 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) int
+pkg crypto/subtle, func ConstantTimeCompare([]byte) int
+pkg crypto/subtle, func ConstantTimeCopy(int, []byte)
+pkg crypto/subtle, func ConstantTimeEq(int32) int
+pkg crypto/subtle, func ConstantTimeSelect(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, *Config) (*Conn, error)
+pkg crypto/tls, func Listen(string, *Config) (net.Listener, error)
+pkg crypto/tls, func LoadX509KeyPair(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([]byte) (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() []byte
+pkg crypto/tls, method (*Conn) Read([]byte) (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([]byte) (int, error)
+pkg crypto/tls, type Certificate struct
+pkg crypto/tls, type Certificate struct, Certificate [][]byte
+pkg crypto/tls, type Certificate struct, Leaf *x509.Certificate
+pkg crypto/tls, type Certificate struct, OCSPStaple []byte
+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, interface{}, interface{}) ([]byte, error)
+pkg crypto/x509, func MarshalPKCS1PrivateKey(*rsa.PrivateKey) []byte
+pkg crypto/x509, func MarshalPKIXPublicKey(interface{}) ([]byte, error)
+pkg crypto/x509, func NewCertPool() *CertPool
+pkg crypto/x509, func ParseCRL([]byte) (*pkix.CertificateList, error)
+pkg crypto/x509, func ParseCertificate([]byte) (*Certificate, error)
+pkg crypto/x509, func ParseCertificates([]byte) ([]*Certificate, error)
+pkg crypto/x509, func ParseDERCRL([]byte) (*pkix.CertificateList, error)
+pkg crypto/x509, func ParsePKCS1PrivateKey([]byte) (*rsa.PrivateKey, error)
+pkg crypto/x509, func ParsePKCS8PrivateKey([]byte) (interface{}, error)
+pkg crypto/x509, func ParsePKIXPublicKey([]byte) (interface{}, error)
+pkg crypto/x509, method (*CertPool) AddCert(*Certificate)
+pkg crypto/x509, method (*CertPool) AppendCertsFromPEM([]byte) bool
+pkg crypto/x509, method (*CertPool) Subjects() [][]byte
+pkg crypto/x509, method (*Certificate) CheckCRLSignature(*pkix.CertificateList) error
+pkg crypto/x509, method (*Certificate) CheckSignature(SignatureAlgorithm, []byte) error
+pkg crypto/x509, method (*Certificate) CheckSignatureFrom(*Certificate) error
+pkg crypto/x509, method (*Certificate) CreateCRL(io.Reader, interface{}, []pkix.RevokedCertificate, time.Time) ([]byte, 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 []byte
+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 []byte
+pkg crypto/x509, type Certificate struct, RawIssuer []byte
+pkg crypto/x509, type Certificate struct, RawSubject []byte
+pkg crypto/x509, type Certificate struct, RawSubjectPublicKeyInfo []byte
+pkg crypto/x509, type Certificate struct, RawTBSCertificate []byte
+pkg crypto/x509, type Certificate struct, SerialNumber *big.Int
+pkg crypto/x509, type Certificate struct, Signature []byte
+pkg crypto/x509, type Certificate struct, SignatureAlgorithm SignatureAlgorithm
+pkg crypto/x509, type Certificate struct, Subject pkix.Name
+pkg crypto/x509, type Certificate struct, SubjectKeyId []byte
+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 []byte
+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) (*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 []byte
+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([]byte) (*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) uint64
+pkg debug/elf, func R_INFO32(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() ([]byte, 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 (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 (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 byte
+pkg debug/elf, type Data byte
+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 [EI_NIDENT]byte
+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 [EI_NIDENT]byte
+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 byte
+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 byte
+pkg debug/elf, type Symbol struct, Name string
+pkg debug/elf, type Symbol struct, Other byte
+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 byte
+pkg debug/gosym, func NewLineTable([]byte, uint64) *LineTable
+pkg debug/gosym, func NewTable([]byte, *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 []byte
+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 byte
+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() ([]byte, error)
+pkg debug/macho, method (*Section) Open() io.ReadSeeker
+pkg debug/macho, method (*Segment) Data() ([]byte, 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() []byte
+pkg debug/macho, method (Dysymtab) Raw() []byte
+pkg debug/macho, method (LoadBytes) Raw() []byte
+pkg debug/macho, method (LoadCmd) GoString() string
+pkg debug/macho, method (LoadCmd) String() string
+pkg debug/macho, method (Segment) Raw() []byte
+pkg debug/macho, method (Symtab) Raw() []byte
+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() []byte
+pkg debug/macho, type LoadBytes []byte
+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]byte
+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]byte
+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]byte
+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]byte
+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]byte
+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]byte
+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() ([]byte, error)
+pkg debug/pe, method (*Section) Open() io.ReadSeeker
+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([]byte, bool) (int, error)
+pkg encoding/ascii85, func Encode([]byte) 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{}) ([]byte, error)
+pkg encoding/asn1, func Unmarshal([]byte, interface{}) ([]byte, error)
+pkg encoding/asn1, func UnmarshalWithParams([]byte, interface{}, string) ([]byte, error)
+pkg encoding/asn1, method (BitString) At(int) int
+pkg encoding/asn1, method (BitString) RightAlign() []byte
+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 []byte
+pkg encoding/asn1, type Enumerated int
+pkg encoding/asn1, type Flag bool
+pkg encoding/asn1, type ObjectIdentifier []int
+pkg encoding/asn1, type RawContent []byte
+pkg encoding/asn1, type RawValue struct
+pkg encoding/asn1, type RawValue struct, Bytes []byte
+pkg encoding/asn1, type RawValue struct, Class int
+pkg encoding/asn1, type RawValue struct, FullBytes []byte
+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([]byte) (int, error)
+pkg encoding/base32, method (*Encoding) DecodeString(string) ([]byte, error)
+pkg encoding/base32, method (*Encoding) DecodedLen(int) int
+pkg encoding/base32, method (*Encoding) Encode([]byte)
+pkg encoding/base32, method (*Encoding) EncodeToString([]byte) 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([]byte) (int, error)
+pkg encoding/base64, method (*Encoding) DecodeString(string) ([]byte, error)
+pkg encoding/base64, method (*Encoding) DecodedLen(int) int
+pkg encoding/base64, method (*Encoding) Encode([]byte)
+pkg encoding/base64, method (*Encoding) EncodeToString([]byte) 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([]byte, uint64) int
+pkg encoding/binary, func PutVarint([]byte, 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([]byte) (uint64, int)
+pkg encoding/binary, func Varint([]byte) (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([]byte, uint16)
+pkg encoding/binary, type ByteOrder interface, PutUint32([]byte, uint32)
+pkg encoding/binary, type ByteOrder interface, PutUint64([]byte, uint64)
+pkg encoding/binary, type ByteOrder interface, String() string
+pkg encoding/binary, type ByteOrder interface, Uint16([]byte) uint16
+pkg encoding/binary, type ByteOrder interface, Uint32([]byte) uint32
+pkg encoding/binary, type ByteOrder interface, Uint64([]byte) 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 rune
+pkg encoding/csv, type Reader struct, Comment rune
+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 rune
+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([]byte) error
+pkg encoding/gob, type GobEncoder interface { GobEncode }
+pkg encoding/gob, type GobEncoder interface, GobEncode() ([]byte, error)
+pkg encoding/hex, func Decode([]byte) (int, error)
+pkg encoding/hex, func DecodeString(string) ([]byte, error)
+pkg encoding/hex, func DecodedLen(int) int
+pkg encoding/hex, func Dump([]byte) string
+pkg encoding/hex, func Dumper(io.Writer) io.WriteCloser
+pkg encoding/hex, func Encode([]byte) int
+pkg encoding/hex, func EncodeToString([]byte) string
+pkg encoding/hex, func EncodedLen(int) int
+pkg encoding/hex, method (InvalidByteError) Error() string
+pkg encoding/hex, type InvalidByteError byte
+pkg encoding/hex, var ErrLength error
+pkg encoding/json, func Compact(*bytes.Buffer, []byte) error
+pkg encoding/json, func HTMLEscape(*bytes.Buffer, []byte)
+pkg encoding/json, func Indent(*bytes.Buffer, []byte, string) error
+pkg encoding/json, func Marshal(interface{}) ([]byte, error)
+pkg encoding/json, func MarshalIndent(interface{}, string) ([]byte, error)
+pkg encoding/json, func NewDecoder(io.Reader) *Decoder
+pkg encoding/json, func NewEncoder(io.Writer) *Encoder
+pkg encoding/json, func Unmarshal([]byte, 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() ([]byte, error)
+pkg encoding/json, method (*RawMessage) UnmarshalJSON([]byte) 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() ([]byte, 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 []byte
+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([]byte) 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([]byte) (*Block, []byte)
+pkg encoding/pem, func Encode(io.Writer, *Block) error
+pkg encoding/pem, func EncodeToMemory(*Block) []byte
+pkg encoding/pem, type Block struct
+pkg encoding/pem, type Block struct, Bytes []byte
+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, []byte)
+pkg encoding/xml, func Marshal(interface{}) ([]byte, error)
+pkg encoding/xml, func MarshalIndent(interface{}, string) ([]byte, error)
+pkg encoding/xml, func NewDecoder(io.Reader) *Decoder
+pkg encoding/xml, func NewEncoder(io.Writer) *Encoder
+pkg encoding/xml, func Unmarshal([]byte, 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 []byte
+pkg encoding/xml, type Comment []byte
+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 []byte
+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 []byte
+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) 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) 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, rune)
+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([]byte) (int, error)
+pkg fmt, type ScanState interface, ReadRune() (rune, int, error)
+pkg fmt, type ScanState interface, SkipSpace()
+pkg fmt, type ScanState interface, Token(bool, func(rune) bool) ([]byte, 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, rune) 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([]byte) (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, Pos }
+pkg go/ast, type Decl interface, End() token.Pos
+pkg go/ast, type Decl interface, Pos() token.Pos
+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, Pos }
+pkg go/ast, type Expr interface, End() token.Pos
+pkg go/ast, type Expr interface, Pos() token.Pos
+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(name string, value 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(imports map[string]*Object, path string) (pkg *Object, err 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, Pos }
+pkg go/ast, type Spec interface, End() token.Pos
+pkg go/ast, type Spec interface, Pos() token.Pos
+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, Pos }
+pkg go/ast, type Stmt interface, End() token.Pos
+pkg go/ast, type Stmt interface, Pos() token.Pos
+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, 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, 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, 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, []byte, 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) bool
+pkg go/scanner, method (ErrorList) Sort()
+pkg go/scanner, method (ErrorList) Swap(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(pos token.Position, msg 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([]byte)
+pkg go/token, method (*File) Size() int
+pkg go/token, method (*FileSet) AddFile(string, 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([]byte) []byte
+pkg hash, type Hash interface, Write([]byte) (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([]byte) []byte
+pkg hash, type Hash32 interface, Sum32() uint32
+pkg hash, type Hash32 interface, Write([]byte) (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([]byte) []byte
+pkg hash, type Hash64 interface, Sum64() uint64
+pkg hash, type Hash64 interface, Write([]byte) (int, error)
+pkg hash/adler32, const Size ideal-int
+pkg hash/adler32, func Checksum([]byte) 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([]byte, *Table) uint32
+pkg hash/crc32, func ChecksumIEEE([]byte) 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, []byte) 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([]byte, *Table) uint64
+pkg hash/crc64, func MakeTable(uint64) *Table
+pkg hash/crc64, func New(*Table) hash.Hash64
+pkg hash/crc64, func Update(uint64, *Table, []byte) 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 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, 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) *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, 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) Point
+pkg image, func Rect(int) Rectangle
+pkg image, func RegisterFormat(string, func(io.Reader) (Image, error), func(io.Reader) (Config, error))
+pkg image, method (*Alpha) At(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
+pkg image, method (*Alpha) Set(int, color.Color)
+pkg image, method (*Alpha) SetAlpha(int, color.Alpha)
+pkg image, method (*Alpha) SubImage(Rectangle) Image
+pkg image, method (*Alpha16) At(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
+pkg image, method (*Alpha16) Set(int, color.Color)
+pkg image, method (*Alpha16) SetAlpha16(int, color.Alpha16)
+pkg image, method (*Alpha16) SubImage(Rectangle) Image
+pkg image, method (*Gray) At(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
+pkg image, method (*Gray) Set(int, color.Color)
+pkg image, method (*Gray) SetGray(int, color.Gray)
+pkg image, method (*Gray) SubImage(Rectangle) Image
+pkg image, method (*Gray16) At(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
+pkg image, method (*Gray16) Set(int, color.Color)
+pkg image, method (*Gray16) SetGray16(int, color.Gray16)
+pkg image, method (*Gray16) SubImage(Rectangle) Image
+pkg image, method (*NRGBA) At(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
+pkg image, method (*NRGBA) Set(int, color.Color)
+pkg image, method (*NRGBA) SetNRGBA(int, color.NRGBA)
+pkg image, method (*NRGBA) SubImage(Rectangle) Image
+pkg image, method (*NRGBA64) At(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
+pkg image, method (*NRGBA64) Set(int, color.Color)
+pkg image, method (*NRGBA64) SetNRGBA64(int, color.NRGBA64)
+pkg image, method (*NRGBA64) SubImage(Rectangle) Image
+pkg image, method (*Paletted) At(int) color.Color
+pkg image, method (*Paletted) Bounds() Rectangle
+pkg image, method (*Paletted) ColorIndexAt(int) uint8
+pkg image, method (*Paletted) ColorModel() color.Model
+pkg image, method (*Paletted) Opaque() bool
+pkg image, method (*Paletted) PixOffset(int) int
+pkg image, method (*Paletted) Set(int, color.Color)
+pkg image, method (*Paletted) SetColorIndex(int, uint8)
+pkg image, method (*Paletted) SubImage(Rectangle) Image
+pkg image, method (*RGBA) At(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
+pkg image, method (*RGBA) Set(int, color.Color)
+pkg image, method (*RGBA) SetRGBA(int, color.RGBA)
+pkg image, method (*RGBA) SubImage(Rectangle) Image
+pkg image, method (*RGBA64) At(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
+pkg image, method (*RGBA64) Set(int, color.Color)
+pkg image, method (*RGBA64) SetRGBA64(int, color.RGBA64)
+pkg image, method (*RGBA64) SubImage(Rectangle) Image
+pkg image, method (*Uniform) At(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
+pkg image, method (*YCbCr) At(int) color.Color
+pkg image, method (*YCbCr) Bounds() Rectangle
+pkg image, method (*YCbCr) COffset(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
+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) 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) color.Color
+pkg image, type PalettedImage interface, Bounds() Rectangle
+pkg image, type PalettedImage interface, ColorIndexAt(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)
+pkg image/color, func YCbCrToRGB(uint8) (uint8, uint8, uint8)
+pkg image/color, method (Alpha) RGBA() uint32
+pkg image/color, method (Alpha16) RGBA() uint32
+pkg image/color, method (Gray) RGBA() uint32
+pkg image/color, method (Gray16) RGBA() uint32
+pkg image/color, method (NRGBA) RGBA() uint32
+pkg image/color, method (NRGBA64) RGBA() uint32
+pkg image/color, method (Palette) Convert(Color) Color
+pkg image/color, method (Palette) Index(Color) int
+pkg image/color, method (RGBA) RGBA() uint32
+pkg image/color, method (RGBA64) RGBA() 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
+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) color.Color
+pkg image/draw, type Image interface, Bounds() Rectangle
+pkg image/draw, type Image interface, ColorModel() color.Model
+pkg image/draw, type Image interface, Set(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([]byte) (int, error)
+pkg image/jpeg, type Reader interface, ReadByte() (byte, 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([]byte) *Index
+pkg index/suffixarray, method (*Index) Bytes() []byte
+pkg index/suffixarray, method (*Index) FindAllIndex(*regexp.Regexp, int) [][]int
+pkg index/suffixarray, method (*Index) Lookup([]byte, 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, []byte, int) (int, error)
+pkg io, func ReadFull(Reader, []byte) (int, error)
+pkg io, func TeeReader(Reader, Writer) Reader
+pkg io, func WriteString(Writer, string) (int, error)
+pkg io, method (*LimitedReader) Read([]byte) (int, error)
+pkg io, method (*PipeReader) Close() error
+pkg io, method (*PipeReader) CloseWithError(error) error
+pkg io, method (*PipeReader) Read([]byte) (int, error)
+pkg io, method (*PipeWriter) Close() error
+pkg io, method (*PipeWriter) CloseWithError(error) error
+pkg io, method (*PipeWriter) Write([]byte) (int, error)
+pkg io, method (*SectionReader) Read([]byte) (int, error)
+pkg io, method (*SectionReader) ReadAt([]byte, 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() (byte, error)
+pkg io, type ByteScanner interface { ReadByte, UnreadByte }
+pkg io, type ByteScanner interface, ReadByte() (byte, 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([]byte) (int, error)
+pkg io, type ReadSeeker interface { Read, Seek }
+pkg io, type ReadSeeker interface, Read([]byte) (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([]byte) (int, error)
+pkg io, type ReadWriteCloser interface, Write([]byte) (int, error)
+pkg io, type ReadWriteSeeker interface { Read, Seek, Write }
+pkg io, type ReadWriteSeeker interface, Read([]byte) (int, error)
+pkg io, type ReadWriteSeeker interface, Seek(int64, int) (int64, error)
+pkg io, type ReadWriteSeeker interface, Write([]byte) (int, error)
+pkg io, type ReadWriter interface { Read, Write }
+pkg io, type ReadWriter interface, Read([]byte) (int, error)
+pkg io, type ReadWriter interface, Write([]byte) (int, error)
+pkg io, type Reader interface { Read }
+pkg io, type Reader interface, Read([]byte) (int, error)
+pkg io, type ReaderAt interface { ReadAt }
+pkg io, type ReaderAt interface, ReadAt([]byte, 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() (rune, int, error)
+pkg io, type RuneScanner interface { ReadRune, UnreadRune }
+pkg io, type RuneScanner interface, ReadRune() (rune, 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([]byte) (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([]byte) (int, error)
+pkg io, type Writer interface { Write }
+pkg io, type Writer interface, Write([]byte) (int, error)
+pkg io, type WriterAt interface { WriteAt }
+pkg io, type WriterAt interface, WriteAt([]byte, 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) ([]byte, error)
+pkg io/ioutil, func ReadDir(string) ([]os.FileInfo, error)
+pkg io/ioutil, func ReadFile(string) ([]byte, error)
+pkg io/ioutil, func TempDir(string) (string, error)
+pkg io/ioutil, func TempFile(string) (*os.File, error)
+pkg io/ioutil, func WriteFile(string, []byte, 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, 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([]byte) (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, 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([]byte) (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, 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([]byte) (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, 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([]byte) (int, error)
+pkg log/syslog (darwin-amd64-cgo), type Priority int
+pkg log/syslog (darwin-amd64-cgo), 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, 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([]byte) (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, 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([]byte) (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, 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([]byte) (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, 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([]byte) (int, error)
+pkg log/syslog (linux-amd64-cgo), type Priority int
+pkg log/syslog (linux-amd64-cgo), 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
+pkg math, func Atanh(float64) float64
+pkg math, func Cbrt(float64) float64
+pkg math, func Ceil(float64) float64
+pkg math, func Copysign(float64) float64
+pkg math, func Cos(float64) float64
+pkg math, func Cosh(float64) float64
+pkg math, func Dim(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
+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
+pkg math, func Min(float64) float64
+pkg math, func Mod(float64) float64
+pkg math, func Modf(float64) (float64, float64)
+pkg math, func NaN() float64
+pkg math, func Nextafter(float64) float64
+pkg math, func Pow(float64) float64
+pkg math, func Pow10(int) float64
+pkg math, func Remainder(float64) float64
+pkg math, func Signbit(float64) bool
+pkg math, func Sin(float64) float64
+pkg math, func Sincos(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-int
+pkg math/big, func NewInt(int64) *Int
+pkg math/big, func NewRat(int64) *Rat
+pkg math/big, method (*Int) Abs(*Int) *Int
+pkg math/big, method (*Int) Add(*Int) *Int
+pkg math/big, method (*Int) And(*Int) *Int
+pkg math/big, method (*Int) AndNot(*Int) *Int
+pkg math/big, method (*Int) Binomial(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() []byte
+pkg math/big, method (*Int) Cmp(*Int) int
+pkg math/big, method (*Int) Div(*Int) *Int
+pkg math/big, method (*Int) DivMod(*Int) (*Int, *Int)
+pkg math/big, method (*Int) Exp(*Int) *Int
+pkg math/big, method (*Int) Format(fmt.State, rune)
+pkg math/big, method (*Int) GCD(*Int) *Int
+pkg math/big, method (*Int) GobDecode([]byte) error
+pkg math/big, method (*Int) GobEncode() ([]byte, 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
+pkg math/big, method (*Int) ModInverse(*Int) *Int
+pkg math/big, method (*Int) Mul(*Int) *Int
+pkg math/big, method (*Int) MulRange(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
+pkg math/big, method (*Int) ProbablyPrime(int) bool
+pkg math/big, method (*Int) Quo(*Int) *Int
+pkg math/big, method (*Int) QuoRem(*Int) (*Int, *Int)
+pkg math/big, method (*Int) Rand(*rand.Rand, *Int) *Int
+pkg math/big, method (*Int) Rem(*Int) *Int
+pkg math/big, method (*Int) Rsh(*Int, uint) *Int
+pkg math/big, method (*Int) Scan(fmt.ScanState, rune) 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([]byte) *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
+pkg math/big, method (*Int) Xor(*Int) *Int
+pkg math/big, method (*Rat) Abs(*Rat) *Rat
+pkg math/big, method (*Rat) Add(*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([]byte) error
+pkg math/big, method (*Rat) GobEncode() ([]byte, error)
+pkg math/big, method (*Rat) Inv(*Rat) *Rat
+pkg math/big, method (*Rat) IsInt() bool
+pkg math/big, method (*Rat) Mul(*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
+pkg math/big, method (*Rat) RatString() string
+pkg math/big, method (*Rat) Scan(fmt.ScanState, rune) error
+pkg math/big, method (*Rat) Set(*Rat) *Rat
+pkg math/big, method (*Rat) SetFrac(*Int) *Rat
+pkg math/big, method (*Rat) SetFrac64(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
+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
+pkg math/cmplx, func Pow(complex128) complex128
+pkg math/cmplx, func Rect(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) 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([]byte) (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) (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) 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([]byte) (int, error)
+pkg mime/multipart, type File interface, ReadAt([]byte, 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) IPMask
+pkg net, func Dial(string) (Conn, error)
+pkg net, func DialIP(string, *IPAddr) (*IPConn, error)
+pkg net, func DialTCP(string, *TCPAddr) (*TCPConn, error)
+pkg net, func DialTimeout(string, time.Duration) (Conn, error)
+pkg net, func DialUDP(string, *UDPAddr) (*UDPConn, error)
+pkg net, func DialUnix(string, *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(byte) IP
+pkg net, func IPv4Mask(byte) 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
+pkg net, func Listen(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) (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) (int, error)
+pkg net, func LookupSRV(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) (*IPAddr, error)
+pkg net, func ResolveTCPAddr(string) (*TCPAddr, error)
+pkg net, func ResolveUDPAddr(string) (*UDPAddr, error)
+pkg net, func ResolveUnixAddr(string) (*UnixAddr, error)
+pkg net, func SplitHostPort(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([]byte) (int, error)
+pkg net, method (*IPConn) ReadFrom([]byte) (int, Addr, error)
+pkg net, method (*IPConn) ReadFromIP([]byte) (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([]byte) (int, error)
+pkg net, method (*IPConn) WriteTo([]byte, Addr) (int, error)
+pkg net, method (*IPConn) WriteToIP([]byte, *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([]byte) (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([]byte) (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([]byte) (int, error)
+pkg net, method (*UDPConn) ReadFrom([]byte) (int, Addr, error)
+pkg net, method (*UDPConn) ReadFromUDP([]byte) (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([]byte) (int, error)
+pkg net, method (*UDPConn) WriteTo([]byte, Addr) (int, error)
+pkg net, method (*UDPConn) WriteToUDP([]byte, *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([]byte) (int, error)
+pkg net, method (*UnixConn) ReadFrom([]byte) (int, Addr, error)
+pkg net, method (*UnixConn) ReadFromUnix([]byte) (int, *UnixAddr, error)
+pkg net, method (*UnixConn) ReadMsgUnix([]byte) (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([]byte) (int, error)
+pkg net, method (*UnixConn) WriteMsgUnix([]byte, *UnixAddr) (int, error)
+pkg net, method (*UnixConn) WriteTo([]byte, Addr) (int, error)
+pkg net, method (*UnixConn) WriteToUnix([]byte, *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
+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([]byte) (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([]byte) (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 []byte
+pkg net, type IP []byte
+pkg net, type IPAddr struct
+pkg net, type IPAddr struct, IP IP
+pkg net, type IPConn struct
+pkg net, type IPMask []byte
+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([]byte) (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([]byte, 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([]byte) 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, 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, 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) bool
+pkg net/http, method (*Request) Referer() string
+pkg net/http, method (*Request) SetBasicAuth(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) 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) 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)
+pkg net/http, method (Header) Del(string)
+pkg net/http, method (Header) Get(string) string
+pkg net/http, method (Header) Set(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([]byte) (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([]byte) (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) (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([]byte) (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) ([]byte, error)
+pkg net/http/httputil, func DumpRequestOut(*http.Request, bool) ([]byte, error)
+pkg net/http/httputil, func DumpResponse(*http.Response, bool) ([]byte, 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) (*Client, error)
+pkg net/rpc, func DialHTTP(string) (*Client, error)
+pkg net/rpc, func DialHTTPPath(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)
+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) (*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) 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) Auth
+pkg net/smtp, func SendMail(string, Auth, string, []string, []byte) 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([]byte, bool) ([]byte, error)
+pkg net/smtp, type Auth interface, Start(*ServerInfo) (string, []byte, 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) (*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() ([]byte, error)
+pkg net/textproto, method (*Conn) ReadDotBytes() ([]byte, error)
+pkg net/textproto, method (*Conn) ReadDotLines() ([]string, error)
+pkg net/textproto, method (*Conn) ReadLine() (string, error)
+pkg net/textproto, method (*Conn) ReadLineBytes() ([]byte, 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() ([]byte, error)
+pkg net/textproto, method (*Reader) ReadDotBytes() ([]byte, error)
+pkg net/textproto, method (*Reader) ReadDotLines() ([]string, error)
+pkg net/textproto, method (*Reader) ReadLine() (string, error)
+pkg net/textproto, method (*Reader) ReadLineBytes() ([]byte, 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)
+pkg net/textproto, method (MIMEHeader) Del(string)
+pkg net/textproto, method (MIMEHeader) Get(string) string
+pkg net/textproto, method (MIMEHeader) Set(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) *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)
+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)
+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) 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) error
+pkg os, func Link(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) error
+pkg os, func SameFile(FileInfo) bool
+pkg os, func Setenv(string) error
+pkg os, func StartProcess(string, []string, *ProcAttr) (*Process, error)
+pkg os, func Stat(string) (FileInfo, error)
+pkg os, func Symlink(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) error
+pkg os, method (*File) Close() error
+pkg os, method (*File) Fd() uintptr
+pkg os, method (*File) Name() string
+pkg os, method (*File) Read([]byte) (int, error)
+pkg os, method (*File) ReadAt([]byte, 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([]byte) (int, error)
+pkg os, method (*File) WriteAt([]byte, 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() ([]byte, error)
+pkg os/exec, method (*Cmd) Output() ([]byte, 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, 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) (bool, error)
+pkg path, func Split(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) bool
+pkg path/filepath, func IsAbs(string) bool
+pkg path/filepath, func Join(...string) string
+pkg path/filepath, func Match(string) (bool, error)
+pkg path/filepath, func Rel(string) (string, error)
+pkg path/filepath, func Split(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(path string, info os.FileInfo, err 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
+pkg reflect, func Copy(Value) int
+pkg reflect, func DeepEqual(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) 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() []byte
+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([]byte)
+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)
+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) 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, AssignableTo, Bits, ChanDir, Elem, Field, FieldAlign, FieldByIndex, FieldByName, FieldByNameFunc, Implements, In, IsVariadic, Key, Kind, Len, Method, MethodByName, Name, NumField, NumIn, NumMethod, NumOut, Out, PkgPath, Size, 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 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, []byte) (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([]byte, []byte, []byte, []int) []byte
+pkg regexp, method (*Regexp) ExpandString([]byte, string, string, []int) []byte
+pkg regexp, method (*Regexp) Find([]byte) []byte
+pkg regexp, method (*Regexp) FindAll([]byte, int) [][]byte
+pkg regexp, method (*Regexp) FindAllIndex([]byte, 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([]byte, int) [][][]byte
+pkg regexp, method (*Regexp) FindAllSubmatchIndex([]byte, int) [][]int
+pkg regexp, method (*Regexp) FindIndex([]byte) []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([]byte) [][]byte
+pkg regexp, method (*Regexp) FindSubmatchIndex([]byte) []int
+pkg regexp, method (*Regexp) LiteralPrefix() (string, bool)
+pkg regexp, method (*Regexp) Match([]byte) 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([]byte) []byte
+pkg regexp, method (*Regexp) ReplaceAllFunc([]byte, func([]byte) []byte) []byte
+pkg regexp, method (*Regexp) ReplaceAllLiteral([]byte) []byte
+pkg regexp, method (*Regexp) ReplaceAllLiteralString(string) string
+pkg regexp, method (*Regexp) ReplaceAllString(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(rune) EmptyOp
+pkg regexp/syntax, func IsWordChar(rune) bool
+pkg regexp/syntax, func Parse(string, Flags) (*Regexp, error)
+pkg regexp/syntax, method (*Error) Error() string
+pkg regexp/syntax, method (*Inst) MatchEmptyWidth(rune, rune) bool
+pkg regexp/syntax, method (*Inst) MatchRune(rune) 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 []rune
+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 []rune
+pkg regexp/syntax, type Regexp struct, Rune0 [2]rune
+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() []byte
+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{})
+pkg runtime, func Stack([]byte, 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, 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() []byte
+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) bool
+pkg sort, method (Float64Slice) Search(float64) int
+pkg sort, method (Float64Slice) Sort()
+pkg sort, method (Float64Slice) Swap(int)
+pkg sort, method (IntSlice) Len() int
+pkg sort, method (IntSlice) Less(int) bool
+pkg sort, method (IntSlice) Search(int) int
+pkg sort, method (IntSlice) Sort()
+pkg sort, method (IntSlice) Swap(int)
+pkg sort, method (StringSlice) Len() int
+pkg sort, method (StringSlice) Less(int) bool
+pkg sort, method (StringSlice) Search(string) int
+pkg sort, method (StringSlice) Sort()
+pkg sort, method (StringSlice) Swap(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) bool
+pkg sort, type Interface interface, Swap(int)
+pkg sort, type StringSlice []string
+pkg strconv, const IntSize ideal-int
+pkg strconv, func AppendBool([]byte, bool) []byte
+pkg strconv, func AppendFloat([]byte, float64, byte, int, int) []byte
+pkg strconv, func AppendInt([]byte, int64, int) []byte
+pkg strconv, func AppendQuote([]byte, string) []byte
+pkg strconv, func AppendQuoteRune([]byte, rune) []byte
+pkg strconv, func AppendQuoteRuneToASCII([]byte, rune) []byte
+pkg strconv, func AppendQuoteToASCII([]byte, string) []byte
+pkg strconv, func AppendUint([]byte, uint64, int) []byte
+pkg strconv, func Atoi(string) (int, error)
+pkg strconv, func CanBackquote(string) bool
+pkg strconv, func FormatBool(bool) string
+pkg strconv, func FormatFloat(float64, byte, int) string
+pkg strconv, func FormatInt(int64, int) string
+pkg strconv, func FormatUint(uint64, int) string
+pkg strconv, func IsPrint(rune) 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(rune) string
+pkg strconv, func QuoteRuneToASCII(rune) string
+pkg strconv, func QuoteToASCII(string) string
+pkg strconv, func Unquote(string) (string, error)
+pkg strconv, func UnquoteChar(string, byte) (rune, 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) bool
+pkg strings, func ContainsAny(string) bool
+pkg strings, func ContainsRune(string, rune) bool
+pkg strings, func Count(string) int
+pkg strings, func EqualFold(string) bool
+pkg strings, func Fields(string) []string
+pkg strings, func FieldsFunc(string, func(rune) bool) []string
+pkg strings, func HasPrefix(string) bool
+pkg strings, func HasSuffix(string) bool
+pkg strings, func Index(string) int
+pkg strings, func IndexAny(string) int
+pkg strings, func IndexFunc(string, func(rune) bool) int
+pkg strings, func IndexRune(string, rune) int
+pkg strings, func Join([]string, string) string
+pkg strings, func LastIndex(string) int
+pkg strings, func LastIndexAny(string) int
+pkg strings, func LastIndexFunc(string, func(rune) bool) int
+pkg strings, func Map(func(rune) rune, 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, int) string
+pkg strings, func Split(string) []string
+pkg strings, func SplitAfter(string) []string
+pkg strings, func SplitAfterN(string, int) []string
+pkg strings, func SplitN(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(rune) bool) string
+pkg strings, func TrimLeft(string, string) string
+pkg strings, func TrimLeftFunc(string, func(rune) bool) string
+pkg strings, func TrimRight(string, string) string
+pkg strings, func TrimRightFunc(string, func(rune) bool) string
+pkg strings, func TrimSpace(string) string
+pkg strings, method (*Reader) Len() int
+pkg strings, method (*Reader) Read([]byte) (int, error)
+pkg strings, method (*Reader) ReadAt([]byte, int64) (int, error)
+pkg strings, method (*Reader) ReadByte() (byte, error)
+pkg strings, method (*Reader) ReadRune() (rune, 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) bool
+pkg sync/atomic, func CompareAndSwapInt64(*int64, int64) bool
+pkg sync/atomic, func CompareAndSwapPointer(*unsafe.Pointer, unsafe.Pointer) bool
+pkg sync/atomic, func CompareAndSwapUint32(*uint32, uint32) bool
+pkg sync/atomic, func CompareAndSwapUint64(*uint64, uint64) bool
+pkg sync/atomic, func CompareAndSwapUintptr(*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 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 ENEEDAUTH Errno
+pkg syscall (darwin-386), const ENOATTR Errno
+pkg syscall (darwin-386), const ENOPOLICY 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 EPWROFF Errno
+pkg syscall (darwin-386), const ERPCMISMATCH Errno
+pkg syscall (darwin-386), const ESHLIBVERS 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_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) *BpfInsn
+pkg syscall (darwin-386), func BpfStats(int) (*BpfStat, error)
+pkg syscall (darwin-386), func BpfStmt(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, []byte, *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) (byte, error)
+pkg syscall (darwin-386), func GetsockoptIPMreq(int) (*IPMreq, error)
+pkg syscall (darwin-386), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
+pkg syscall (darwin-386), func GetsockoptInet4Addr(int) ([4]byte, error)
+pkg syscall (darwin-386), func GetsockoptInt(int) (int, error)
+pkg syscall (darwin-386), func Issetugid() bool
+pkg syscall (darwin-386), func Kevent(int, []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 Link(string, string) 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) ([]byte, error)
+pkg syscall (darwin-386), func Munmap([]byte) 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([]byte, int, []string) (int, int, []string)
+pkg syscall (darwin-386), func ParseRoutingMessage([]byte) ([]RoutingMessage, error)
+pkg syscall (darwin-386), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (darwin-386), func ParseSocketControlMessage([]byte) ([]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, []byte, 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, []byte, int64) (int, error)
+pkg syscall (darwin-386), func RawSyscall(uintptr) (uintptr, Errno)
+pkg syscall (darwin-386), func RawSyscall6(uintptr) (uintptr, Errno)
+pkg syscall (darwin-386), func Read(int, []byte) (int, error)
+pkg syscall (darwin-386), func ReadDirent(int, []byte) (int, error)
+pkg syscall (darwin-386), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
+pkg syscall (darwin-386), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
+pkg syscall (darwin-386), func Rename(string, string) error
+pkg syscall (darwin-386), func Revoke(string) error
+pkg syscall (darwin-386), func RouteRIB(int) ([]byte, 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, []byte, Sockaddr, int) error
+pkg syscall (darwin-386), func Sendto(int, []byte, int, Sockaddr) error
+pkg syscall (darwin-386), func SetBpf(int, []BpfInsn) error
+pkg syscall (darwin-386), func SetBpfBuflen(int) (int, error)
+pkg syscall (darwin-386), func SetBpfDatalink(int) (int, error)
+pkg syscall (darwin-386), func SetBpfHeadercmpl(int) error
+pkg syscall (darwin-386), func SetBpfImmediate(int) error
+pkg syscall (darwin-386), func SetBpfInterface(int, string) error
+pkg syscall (darwin-386), func SetBpfPromisc(int) error
+pkg syscall (darwin-386), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (darwin-386), func SetKevent(*Kevent_t, 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, byte) error
+pkg syscall (darwin-386), func SetsockoptIPMreq(int, *IPMreq) error
+pkg syscall (darwin-386), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
+pkg syscall (darwin-386), func SetsockoptInet4Addr(int, [4]byte) error
+pkg syscall (darwin-386), func SetsockoptInt(int, int) error
+pkg syscall (darwin-386), func SetsockoptLinger(int, *Linger) error
+pkg syscall (darwin-386), func SetsockoptString(int, string) error
+pkg syscall (darwin-386), func SetsockoptTimeval(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, error)
+pkg syscall (darwin-386), func Socketpair(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) []*byte
+pkg syscall (darwin-386), func Symlink(string, string) error
+pkg syscall (darwin-386), func Sync() error
+pkg syscall (darwin-386), func Syscall9(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) []byte
+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, []byte) (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]byte
+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]byte
+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 *byte
+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]byte
+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]byte
+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]byte
+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]byte
+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]byte
+pkg syscall (darwin-386), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (darwin-386), type InterfaceAddrMessage struct
+pkg syscall (darwin-386), type InterfaceAddrMessage struct, Data []byte
+pkg syscall (darwin-386), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (darwin-386), type InterfaceMessage struct
+pkg syscall (darwin-386), type InterfaceMessage struct, Data []byte
+pkg syscall (darwin-386), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct
+pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct, Data []byte
+pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2
+pkg syscall (darwin-386), type Iovec struct
+pkg syscall (darwin-386), type Iovec struct, Base *byte
+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 *byte
+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 *byte
+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 *byte
+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, 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]byte
+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 []byte
+pkg syscall (darwin-386), type RouteMessage struct, Header RtMsghdr
+pkg syscall (darwin-386), type RoutingMessage interface {}
+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]byte
+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 []byte
+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]byte
+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 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 ENEEDAUTH Errno
+pkg syscall (darwin-386-cgo), const ENOATTR Errno
+pkg syscall (darwin-386-cgo), const ENOPOLICY 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 EPWROFF Errno
+pkg syscall (darwin-386-cgo), const ERPCMISMATCH Errno
+pkg syscall (darwin-386-cgo), const ESHLIBVERS 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_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) *BpfInsn
+pkg syscall (darwin-386-cgo), func BpfStats(int) (*BpfStat, error)
+pkg syscall (darwin-386-cgo), func BpfStmt(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, []byte, *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) (byte, error)
+pkg syscall (darwin-386-cgo), func GetsockoptIPMreq(int) (*IPMreq, error)
+pkg syscall (darwin-386-cgo), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
+pkg syscall (darwin-386-cgo), func GetsockoptInet4Addr(int) ([4]byte, error)
+pkg syscall (darwin-386-cgo), func GetsockoptInt(int) (int, error)
+pkg syscall (darwin-386-cgo), func Issetugid() bool
+pkg syscall (darwin-386-cgo), func Kevent(int, []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 Link(string, string) 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) ([]byte, error)
+pkg syscall (darwin-386-cgo), func Munmap([]byte) 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([]byte, int, []string) (int, int, []string)
+pkg syscall (darwin-386-cgo), func ParseRoutingMessage([]byte) ([]RoutingMessage, error)
+pkg syscall (darwin-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (darwin-386-cgo), func ParseSocketControlMessage([]byte) ([]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, []byte, 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, []byte, int64) (int, error)
+pkg syscall (darwin-386-cgo), func RawSyscall(uintptr) (uintptr, Errno)
+pkg syscall (darwin-386-cgo), func RawSyscall6(uintptr) (uintptr, Errno)
+pkg syscall (darwin-386-cgo), func Read(int, []byte) (int, error)
+pkg syscall (darwin-386-cgo), func ReadDirent(int, []byte) (int, error)
+pkg syscall (darwin-386-cgo), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
+pkg syscall (darwin-386-cgo), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
+pkg syscall (darwin-386-cgo), func Rename(string, string) error
+pkg syscall (darwin-386-cgo), func Revoke(string) error
+pkg syscall (darwin-386-cgo), func RouteRIB(int) ([]byte, 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, []byte, Sockaddr, int) error
+pkg syscall (darwin-386-cgo), func Sendto(int, []byte, int, Sockaddr) error
+pkg syscall (darwin-386-cgo), func SetBpf(int, []BpfInsn) error
+pkg syscall (darwin-386-cgo), func SetBpfBuflen(int) (int, error)
+pkg syscall (darwin-386-cgo), func SetBpfDatalink(int) (int, error)
+pkg syscall (darwin-386-cgo), func SetBpfHeadercmpl(int) error
+pkg syscall (darwin-386-cgo), func SetBpfImmediate(int) error
+pkg syscall (darwin-386-cgo), func SetBpfInterface(int, string) error
+pkg syscall (darwin-386-cgo), func SetBpfPromisc(int) error
+pkg syscall (darwin-386-cgo), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (darwin-386-cgo), func SetKevent(*Kevent_t, 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, byte) error
+pkg syscall (darwin-386-cgo), func SetsockoptIPMreq(int, *IPMreq) error
+pkg syscall (darwin-386-cgo), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
+pkg syscall (darwin-386-cgo), func SetsockoptInet4Addr(int, [4]byte) error
+pkg syscall (darwin-386-cgo), func SetsockoptInt(int, int) error
+pkg syscall (darwin-386-cgo), func SetsockoptLinger(int, *Linger) error
+pkg syscall (darwin-386-cgo), func SetsockoptString(int, string) error
+pkg syscall (darwin-386-cgo), func SetsockoptTimeval(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, error)
+pkg syscall (darwin-386-cgo), func Socketpair(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) []*byte
+pkg syscall (darwin-386-cgo), func Symlink(string, string) error
+pkg syscall (darwin-386-cgo), func Sync() error
+pkg syscall (darwin-386-cgo), func Syscall9(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) []byte
+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, []byte) (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]byte
+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]byte
+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 *byte
+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]byte
+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]byte
+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]byte
+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]byte
+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]byte
+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 []byte
+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 []byte
+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 []byte
+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 *byte
+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 *byte
+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 *byte
+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 *byte
+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, 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]byte
+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 []byte
+pkg syscall (darwin-386-cgo), type RouteMessage struct, Header RtMsghdr
+pkg syscall (darwin-386-cgo), type RoutingMessage interface {}
+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]byte
+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 []byte
+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]byte
+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 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 ENEEDAUTH Errno
+pkg syscall (darwin-amd64), const ENOATTR Errno
+pkg syscall (darwin-amd64), const ENOPOLICY 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 EPWROFF Errno
+pkg syscall (darwin-amd64), const ERPCMISMATCH Errno
+pkg syscall (darwin-amd64), const ESHLIBVERS 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_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) *BpfInsn
+pkg syscall (darwin-amd64), func BpfStats(int) (*BpfStat, error)
+pkg syscall (darwin-amd64), func BpfStmt(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, []byte, *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) (byte, error)
+pkg syscall (darwin-amd64), func GetsockoptIPMreq(int) (*IPMreq, error)
+pkg syscall (darwin-amd64), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
+pkg syscall (darwin-amd64), func GetsockoptInet4Addr(int) ([4]byte, error)
+pkg syscall (darwin-amd64), func GetsockoptInt(int) (int, error)
+pkg syscall (darwin-amd64), func Issetugid() bool
+pkg syscall (darwin-amd64), func Kevent(int, []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 Link(string, string) 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) ([]byte, error)
+pkg syscall (darwin-amd64), func Munmap([]byte) 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([]byte, int, []string) (int, int, []string)
+pkg syscall (darwin-amd64), func ParseRoutingMessage([]byte) ([]RoutingMessage, error)
+pkg syscall (darwin-amd64), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (darwin-amd64), func ParseSocketControlMessage([]byte) ([]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, []byte, 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, []byte, int64) (int, error)
+pkg syscall (darwin-amd64), func RawSyscall(uintptr) (uintptr, Errno)
+pkg syscall (darwin-amd64), func RawSyscall6(uintptr) (uintptr, Errno)
+pkg syscall (darwin-amd64), func Read(int, []byte) (int, error)
+pkg syscall (darwin-amd64), func ReadDirent(int, []byte) (int, error)
+pkg syscall (darwin-amd64), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
+pkg syscall (darwin-amd64), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
+pkg syscall (darwin-amd64), func Rename(string, string) error
+pkg syscall (darwin-amd64), func Revoke(string) error
+pkg syscall (darwin-amd64), func RouteRIB(int) ([]byte, 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, []byte, Sockaddr, int) error
+pkg syscall (darwin-amd64), func Sendto(int, []byte, int, Sockaddr) error
+pkg syscall (darwin-amd64), func SetBpf(int, []BpfInsn) error
+pkg syscall (darwin-amd64), func SetBpfBuflen(int) (int, error)
+pkg syscall (darwin-amd64), func SetBpfDatalink(int) (int, error)
+pkg syscall (darwin-amd64), func SetBpfHeadercmpl(int) error
+pkg syscall (darwin-amd64), func SetBpfImmediate(int) error
+pkg syscall (darwin-amd64), func SetBpfInterface(int, string) error
+pkg syscall (darwin-amd64), func SetBpfPromisc(int) error
+pkg syscall (darwin-amd64), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (darwin-amd64), func SetKevent(*Kevent_t, 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, byte) error
+pkg syscall (darwin-amd64), func SetsockoptIPMreq(int, *IPMreq) error
+pkg syscall (darwin-amd64), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
+pkg syscall (darwin-amd64), func SetsockoptInet4Addr(int, [4]byte) error
+pkg syscall (darwin-amd64), func SetsockoptInt(int, int) error
+pkg syscall (darwin-amd64), func SetsockoptLinger(int, *Linger) error
+pkg syscall (darwin-amd64), func SetsockoptString(int, string) error
+pkg syscall (darwin-amd64), func SetsockoptTimeval(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, error)
+pkg syscall (darwin-amd64), func Socketpair(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) []*byte
+pkg syscall (darwin-amd64), func Symlink(string, string) error
+pkg syscall (darwin-amd64), func Sync() error
+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) []byte
+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, []byte) (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]byte
+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]byte
+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]byte
+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 *byte
+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]byte
+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]byte
+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]byte
+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]byte
+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]byte
+pkg syscall (darwin-amd64), type Inet6Pktinfo struct, Ifindex uint32
+pkg syscall (darwin-amd64), type InterfaceAddrMessage struct
+pkg syscall (darwin-amd64), type InterfaceAddrMessage struct, Data []byte
+pkg syscall (darwin-amd64), type InterfaceAddrMessage struct, Header IfaMsghdr
+pkg syscall (darwin-amd64), type InterfaceMessage struct
+pkg syscall (darwin-amd64), type InterfaceMessage struct, Data []byte
+pkg syscall (darwin-amd64), type InterfaceMessage struct, Header IfMsghdr
+pkg syscall (darwin-amd64), type InterfaceMulticastAddrMessage struct
+pkg syscall (darwin-amd64), type InterfaceMulticastAddrMessage struct, Data []byte
+pkg syscall (darwin-amd64), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2
+pkg syscall (darwin-amd64), type Iovec struct
+pkg syscall (darwin-amd64), type Iovec struct, Base *byte
+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 *byte
+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 *byte
+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 *byte
+pkg syscall (darwin-amd64), type Msghdr struct, Namelen uint32
+pkg syscall (darwin-amd64), type Msghdr struct, Pad_cgo_0 [4]byte
+pkg syscall (darwin-amd64), type Msghdr struct, Pad_cgo_1 [4]byte
+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]byte
+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]byte
+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 []byte
+pkg syscall (darwin-amd64), type RouteMessage struct, Header RtMsghdr
+pkg syscall (darwin-amd64), type RoutingMessage interface {}
+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]byte
+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 []byte
+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]byte
+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]byte
+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 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 ENEEDAUTH Errno
+pkg syscall (darwin-amd64-cgo), const ENOATTR Errno
+pkg syscall (darwin-amd64-cgo), const ENOPOLICY 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 EPWROFF Errno
+pkg syscall (darwin-amd64-cgo), const ERPCMISMATCH Errno
+pkg syscall (darwin-amd64-cgo), const ESHLIBVERS 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_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) *BpfInsn
+pkg syscall (darwin-amd64-cgo), func BpfStats(int) (*BpfStat, error)
+pkg syscall (darwin-amd64-cgo), func BpfStmt(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, []byte, *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) (byte, error)
+pkg syscall (darwin-amd64-cgo), func GetsockoptIPMreq(int) (*IPMreq, error)
+pkg syscall (darwin-amd64-cgo), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
+pkg syscall (darwin-amd64-cgo), func GetsockoptInet4Addr(int) ([4]byte, error)
+pkg syscall (darwin-amd64-cgo), func GetsockoptInt(int) (int, error)
+pkg syscall (darwin-amd64-cgo), func Issetugid() bool
+pkg syscall (darwin-amd64-cgo), func Kevent(int, []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 Link(string, string) 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) ([]byte, error)
+pkg syscall (darwin-amd64-cgo), func Munmap([]byte) 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([]byte, int, []string) (int, int, []string)
+pkg syscall (darwin-amd64-cgo), func ParseRoutingMessage([]byte) ([]RoutingMessage, error)
+pkg syscall (darwin-amd64-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
+pkg syscall (darwin-amd64-cgo), func ParseSocketControlMessage([]byte) ([]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, []byte, 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, []byte, int64) (int, error)
+pkg syscall (darwin-amd64-cgo), func RawSyscall(uintptr) (uintptr, Errno)
+pkg syscall (darwin-amd64-cgo), func RawSyscall6(uintptr) (uintptr, Errno)
+pkg syscall (darwin-amd64-cgo), func Read(int, []byte) (int, error)
+pkg syscall (darwin-amd64-cgo), func ReadDirent(int, []byte) (int, error)
+pkg syscall (darwin-amd64-cgo), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
+pkg syscall (darwin-amd64-cgo), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
+pkg syscall (darwin-amd64-cgo), func Rename(string, string) error
+pkg syscall (darwin-amd64-cgo), func Revoke(string) error
+pkg syscall (darwin-amd64-cgo), func RouteRIB(int) ([]byte, 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, []byte, Sockaddr, int) error
+pkg syscall (darwin-amd64-cgo), func Sendto(int, []byte, int, Sockaddr) error
+pkg syscall (darwin-amd64-cgo), func SetBpf(int, []BpfInsn) error
+pkg syscall (darwin-amd64-cgo), func SetBpfBuflen(int) (int, error)
+pkg syscall (darwin-amd64-cgo), func SetBpfDatalink(int) (int, error)
+pkg syscall (darwin-amd64-cgo), func SetBpfHeadercmpl(int) error
+pkg syscall (darwin-amd64-cgo), func SetBpfImmediate(int) error
+pkg syscall (darwin-amd64-cgo), func SetBpfInterface(int, string) error
+pkg syscall (darwin-amd64-cgo), func SetBpfPromisc(int) error
+pkg syscall (darwin-amd64-cgo), func SetBpfTimeout(int, *Timeval) error
+pkg syscall (darwin-amd64-cgo), func SetKevent(*Kevent_t, 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, byte) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptIPMreq(int, *IPMreq) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptInet4Addr(int, [4]byte) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptInt(int, int) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptLinger(int, *Linger) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptString(int, string) error
+pkg syscall (darwin-amd64-cgo), func SetsockoptTimeval(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, error)
+pkg syscall (darwin-amd64-cgo), func Socketpair(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) []*byte
+pkg syscall (darwin-amd64-cgo), func Symlink(string, string) error
+pkg syscall (darwin-amd64-cgo), func Sync() error
+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) []byte
+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, []byte) (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]byte
+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]byte
+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]byte
+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 *byte
+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]byte
+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]byte
+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]byte
+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]byte
+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]byte
+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 []byte
+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 []byte
+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 []byte
+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 *byte
+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 *byte
+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 *byte
+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 *byte
+pkg syscall (darwin-amd64-cgo), type Msghdr struct, Namelen uint32
+pkg syscall (darwin-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]byte
+pkg syscall (darwin-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]byte
+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]byte
+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]byte
+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 []byte
+pkg syscall (darwin-amd64-cgo), type RouteMessage struct, Header RtMsghdr
+pkg syscall (darwin-amd64-cgo), type RoutingMessage interface {}
+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]byte
+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 []byte
+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]byte
+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]byte
+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 (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 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 ENAVAIL Errno
+pkg syscall (linux-386), const ENOANO Errno
+pkg syscall (linux-386), const ENOCSI Errno
+pkg syscall (linux-386), const ENOKEY 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 ENOTNAM Errno
+pkg syscall (linux-386), const ENOTUNIQ 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 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 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_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([]byte) (int, error)
+pkg syscall (linux-386), func Getdents(int, []byte) (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) (*IPMreq, error)
+pkg syscall (linux-386), func GetsockoptIPMreqn(int) (*IPMreqn, error)
+pkg syscall (linux-386), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
+pkg syscall (linux-386), func GetsockoptInet4Addr(int) ([4]byte, error)
+pkg syscall (linux-386), func GetsockoptInt(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, []byte) (int, error)
+pkg syscall (linux-386), func Link(string, string) error
+pkg syscall (linux-386), func Listen(int, int) error
+pkg syscall (linux-386), func LsfJump(int) *SockFilter
+pkg syscall (linux-386), func LsfSocket(int) (int, error)
+pkg syscall (linux-386), func LsfStmt(int) *SockFilter
+pkg syscall (linux-386), func Lstat(string, *Stat_t) error
+pkg syscall (linux-386), func Madvise([]byte, 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([]byte) error
+pkg syscall (linux-386), func Mlockall(int) error
+pkg syscall (linux-386), func Mmap(int, int64, int, int, int) ([]byte, error)
+pkg syscall (linux-386), func Mount(string, string, string, uintptr, string) error
+pkg syscall (linux-386), func Mprotect([]byte, int) error
+pkg syscall (linux-386), func Munlock([]byte) error
+pkg syscall (linux-386), func Munlockall() error
+pkg syscall (linux-386), func Munmap([]byte) error
+pkg syscall (linux-386), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (linux-386), func NetlinkRIB(int) ([]byte, 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([]byte, int, []string) (int, int, []string)
+pkg syscall (linux-386), func ParseNetlinkMessage([]byte) ([]NetlinkMessage, error)
+pkg syscall (linux-386), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error)
+pkg syscall (linux-386), func ParseSocketControlMessage([]byte) ([]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, []byte, 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, []byte) (int, error)
+pkg syscall (linux-386), func PtracePeekText(int, uintptr, []byte) (int, error)
+pkg syscall (linux-386), func PtracePokeData(int, uintptr, []byte) (int, error)
+pkg syscall (linux-386), func PtracePokeText(int, uintptr, []byte) (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, []byte, int64) (int, error)
+pkg syscall (linux-386), func RawSyscall(uintptr) (uintptr, Errno)
+pkg syscall (linux-386), func RawSyscall6(uintptr) (uintptr, Errno)
+pkg syscall (linux-386), func Read(int, []byte) (int, error)
+pkg syscall (linux-386), func ReadDirent(int, []byte) (int, error)
+pkg syscall (linux-386), func Reboot(int) error
+pkg syscall (linux-386), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
+pkg syscall (linux-386), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
+pkg syscall (linux-386), func Rename(string, string) 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, []byte, Sockaddr, int) error
+pkg syscall (linux-386), func Sendto(int, []byte, 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([]byte) 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([]byte) 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, *IPMreq) error
+pkg syscall (linux-386), func SetsockoptIPMreqn(int, *IPMreqn) error
+pkg syscall (linux-386), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
+pkg syscall (linux-386), func SetsockoptInet4Addr(int, [4]byte) error
+pkg syscall (linux-386), func SetsockoptInt(int, int) error
+pkg syscall (linux-386), func SetsockoptLinger(int, *Linger) error
+pkg syscall (linux-386), func SetsockoptString(int, string) error
+pkg syscall (linux-386), func SetsockoptTimeval(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) error
+pkg syscall (linux-386), func Socket(int) (int, error)
+pkg syscall (linux-386), func Socketpair(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) []*byte
+pkg syscall (linux-386), func Symlink(string, string) error
+pkg syscall (linux-386), func Sync()
+pkg syscall (linux-386), func SyncFileRange(int, int64, int64, int) error
+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) []byte
+pkg syscall (linux-386), func UnixRights(...int) []byte
+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, []byte) (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]byte
+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]byte
+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]byte
+pkg syscall (linux-386), type IPMreqn struct, Ifindex int32
+pkg syscall (linux-386), type IPMreqn struct, Multiaddr [4]byte
+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]byte
+pkg syscall (linux-386), type Inet4Pktinfo struct, Ifindex int32
+pkg syscall (linux-386), type Inet4Pktinfo struct, Spec_dst [4]byte
+pkg syscall (linux-386), type Inet6Pktinfo struct
+pkg syscall (linux-386), type Inet6Pktinfo struct, Addr [16]byte
+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]byte
+pkg syscall (linux-386), type InotifyEvent struct, Wd int32
+pkg syscall (linux-386), type Iovec struct
+pkg syscall (linux-386), type Iovec struct, Base *byte
+pkg syscall (linux-386), type Iovec struct, Len uint32
+pkg syscall (linux-386), type Msghdr struct
+pkg syscall (linux-386), type Msghdr struct, Control *byte
+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 *byte
+pkg syscall (linux-386), type Msghdr struct, Namelen uint32
+pkg syscall (linux-386), type NetlinkMessage struct
+pkg syscall (linux-386), type NetlinkMessage struct, Data []byte
+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 []byte
+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, 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]byte
+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]byte
+pkg syscall (linux-386), type SockaddrLinklayer struct
+pkg syscall (linux-386), type SockaddrLinklayer struct, Addr [8]byte
+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 []byte
+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]byte
+pkg syscall (linux-386), type Stat_t struct, Pad_cgo_1 [2]byte
+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]byte
+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]byte
+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 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 ENAVAIL Errno
+pkg syscall (linux-386-cgo), const ENOANO Errno
+pkg syscall (linux-386-cgo), const ENOCSI Errno
+pkg syscall (linux-386-cgo), const ENOKEY 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 ENOTNAM Errno
+pkg syscall (linux-386-cgo), const ENOTUNIQ 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 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 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_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([]byte) (int, error)
+pkg syscall (linux-386-cgo), func Getdents(int, []byte) (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) (*IPMreq, error)
+pkg syscall (linux-386-cgo), func GetsockoptIPMreqn(int) (*IPMreqn, error)
+pkg syscall (linux-386-cgo), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
+pkg syscall (linux-386-cgo), func GetsockoptInet4Addr(int) ([4]byte, error)
+pkg syscall (linux-386-cgo), func GetsockoptInt(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, []byte) (int, error)
+pkg syscall (linux-386-cgo), func Link(string, string) error
+pkg syscall (linux-386-cgo), func Listen(int, int) error
+pkg syscall (linux-386-cgo), func LsfJump(int) *SockFilter
+pkg syscall (linux-386-cgo), func LsfSocket(int) (int, error)
+pkg syscall (linux-386-cgo), func LsfStmt(int) *SockFilter
+pkg syscall (linux-386-cgo), func Lstat(string, *Stat_t) error
+pkg syscall (linux-386-cgo), func Madvise([]byte, 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([]byte) error
+pkg syscall (linux-386-cgo), func Mlockall(int) error
+pkg syscall (linux-386-cgo), func Mmap(int, int64, int, int, int) ([]byte, error)
+pkg syscall (linux-386-cgo), func Mount(string, string, string, uintptr, string) error
+pkg syscall (linux-386-cgo), func Mprotect([]byte, int) error
+pkg syscall (linux-386-cgo), func Munlock([]byte) error
+pkg syscall (linux-386-cgo), func Munlockall() error
+pkg syscall (linux-386-cgo), func Munmap([]byte) error
+pkg syscall (linux-386-cgo), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (linux-386-cgo), func NetlinkRIB(int) ([]byte, 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([]byte, int, []string) (int, int, []string)
+pkg syscall (linux-386-cgo), func ParseNetlinkMessage([]byte) ([]NetlinkMessage, error)
+pkg syscall (linux-386-cgo), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error)
+pkg syscall (linux-386-cgo), func ParseSocketControlMessage([]byte) ([]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, []byte, 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, []byte) (int, error)
+pkg syscall (linux-386-cgo), func PtracePeekText(int, uintptr, []byte) (int, error)
+pkg syscall (linux-386-cgo), func PtracePokeData(int, uintptr, []byte) (int, error)
+pkg syscall (linux-386-cgo), func PtracePokeText(int, uintptr, []byte) (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, []byte, int64) (int, error)
+pkg syscall (linux-386-cgo), func RawSyscall(uintptr) (uintptr, Errno)
+pkg syscall (linux-386-cgo), func RawSyscall6(uintptr) (uintptr, Errno)
+pkg syscall (linux-386-cgo), func Read(int, []byte) (int, error)
+pkg syscall (linux-386-cgo), func ReadDirent(int, []byte) (int, error)
+pkg syscall (linux-386-cgo), func Reboot(int) error
+pkg syscall (linux-386-cgo), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
+pkg syscall (linux-386-cgo), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
+pkg syscall (linux-386-cgo), func Rename(string, string) 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, []byte, Sockaddr, int) error
+pkg syscall (linux-386-cgo), func Sendto(int, []byte, 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([]byte) 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([]byte) 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, *IPMreq) error
+pkg syscall (linux-386-cgo), func SetsockoptIPMreqn(int, *IPMreqn) error
+pkg syscall (linux-386-cgo), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
+pkg syscall (linux-386-cgo), func SetsockoptInet4Addr(int, [4]byte) error
+pkg syscall (linux-386-cgo), func SetsockoptInt(int, int) error
+pkg syscall (linux-386-cgo), func SetsockoptLinger(int, *Linger) error
+pkg syscall (linux-386-cgo), func SetsockoptString(int, string) error
+pkg syscall (linux-386-cgo), func SetsockoptTimeval(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) error
+pkg syscall (linux-386-cgo), func Socket(int) (int, error)
+pkg syscall (linux-386-cgo), func Socketpair(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) []*byte
+pkg syscall (linux-386-cgo), func Symlink(string, string) error
+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 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) []byte
+pkg syscall (linux-386-cgo), func UnixRights(...int) []byte
+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, []byte) (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]byte
+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]byte
+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]byte
+pkg syscall (linux-386-cgo), type IPMreqn struct, Ifindex int32
+pkg syscall (linux-386-cgo), type IPMreqn struct, Multiaddr [4]byte
+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]byte
+pkg syscall (linux-386-cgo), type Inet4Pktinfo struct, Ifindex int32
+pkg syscall (linux-386-cgo), type Inet4Pktinfo struct, Spec_dst [4]byte
+pkg syscall (linux-386-cgo), type Inet6Pktinfo struct
+pkg syscall (linux-386-cgo), type Inet6Pktinfo struct, Addr [16]byte
+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]byte
+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 *byte
+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 *byte
+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 *byte
+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 []byte
+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 []byte
+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, 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]byte
+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]byte
+pkg syscall (linux-386-cgo), type SockaddrLinklayer struct
+pkg syscall (linux-386-cgo), type SockaddrLinklayer struct, Addr [8]byte
+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 []byte
+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]byte
+pkg syscall (linux-386-cgo), type Stat_t struct, Pad_cgo_1 [2]byte
+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]byte
+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]byte
+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 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 ENAVAIL Errno
+pkg syscall (linux-amd64), const ENOANO Errno
+pkg syscall (linux-amd64), const ENOCSI Errno
+pkg syscall (linux-amd64), const ENOKEY 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 ENOTNAM Errno
+pkg syscall (linux-amd64), const ENOTUNIQ 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 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 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_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([]byte) (int, error)
+pkg syscall (linux-amd64), func Getdents(int, []byte) (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) (*IPMreq, error)
+pkg syscall (linux-amd64), func GetsockoptIPMreqn(int) (*IPMreqn, error)
+pkg syscall (linux-amd64), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
+pkg syscall (linux-amd64), func GetsockoptInet4Addr(int) ([4]byte, error)
+pkg syscall (linux-amd64), func GetsockoptInt(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, []byte) (int, error)
+pkg syscall (linux-amd64), func Link(string, string) error
+pkg syscall (linux-amd64), func Listen(int, int) error
+pkg syscall (linux-amd64), func LsfJump(int) *SockFilter
+pkg syscall (linux-amd64), func LsfSocket(int) (int, error)
+pkg syscall (linux-amd64), func LsfStmt(int) *SockFilter
+pkg syscall (linux-amd64), func Lstat(string, *Stat_t) error
+pkg syscall (linux-amd64), func Madvise([]byte, 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([]byte) error
+pkg syscall (linux-amd64), func Mlockall(int) error
+pkg syscall (linux-amd64), func Mmap(int, int64, int, int, int) ([]byte, error)
+pkg syscall (linux-amd64), func Mount(string, string, string, uintptr, string) error
+pkg syscall (linux-amd64), func Mprotect([]byte, int) error
+pkg syscall (linux-amd64), func Munlock([]byte) error
+pkg syscall (linux-amd64), func Munlockall() error
+pkg syscall (linux-amd64), func Munmap([]byte) error
+pkg syscall (linux-amd64), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (linux-amd64), func NetlinkRIB(int) ([]byte, 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([]byte, int, []string) (int, int, []string)
+pkg syscall (linux-amd64), func ParseNetlinkMessage([]byte) ([]NetlinkMessage, error)
+pkg syscall (linux-amd64), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error)
+pkg syscall (linux-amd64), func ParseSocketControlMessage([]byte) ([]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, []byte, 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, []byte) (int, error)
+pkg syscall (linux-amd64), func PtracePeekText(int, uintptr, []byte) (int, error)
+pkg syscall (linux-amd64), func PtracePokeData(int, uintptr, []byte) (int, error)
+pkg syscall (linux-amd64), func PtracePokeText(int, uintptr, []byte) (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, []byte, int64) (int, error)
+pkg syscall (linux-amd64), func RawSyscall(uintptr) (uintptr, Errno)
+pkg syscall (linux-amd64), func RawSyscall6(uintptr) (uintptr, Errno)
+pkg syscall (linux-amd64), func Read(int, []byte) (int, error)
+pkg syscall (linux-amd64), func ReadDirent(int, []byte) (int, error)
+pkg syscall (linux-amd64), func Reboot(int) error
+pkg syscall (linux-amd64), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
+pkg syscall (linux-amd64), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
+pkg syscall (linux-amd64), func Rename(string, string) 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, []byte, Sockaddr, int) error
+pkg syscall (linux-amd64), func Sendto(int, []byte, 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([]byte) 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([]byte) 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, *IPMreq) error
+pkg syscall (linux-amd64), func SetsockoptIPMreqn(int, *IPMreqn) error
+pkg syscall (linux-amd64), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
+pkg syscall (linux-amd64), func SetsockoptInet4Addr(int, [4]byte) error
+pkg syscall (linux-amd64), func SetsockoptInt(int, int) error
+pkg syscall (linux-amd64), func SetsockoptLinger(int, *Linger) error
+pkg syscall (linux-amd64), func SetsockoptString(int, string) error
+pkg syscall (linux-amd64), func SetsockoptTimeval(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, error)
+pkg syscall (linux-amd64), func Socketpair(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) []*byte
+pkg syscall (linux-amd64), func Symlink(string, string) error
+pkg syscall (linux-amd64), func Sync()
+pkg syscall (linux-amd64), func SyncFileRange(int, int64, int64, int) error
+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) []byte
+pkg syscall (linux-amd64), func UnixRights(...int) []byte
+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, []byte) (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]byte
+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]byte
+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]byte
+pkg syscall (linux-amd64), type IPMreqn struct, Ifindex int32
+pkg syscall (linux-amd64), type IPMreqn struct, Multiaddr [4]byte
+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]byte
+pkg syscall (linux-amd64), type Inet4Pktinfo struct, Ifindex int32
+pkg syscall (linux-amd64), type Inet4Pktinfo struct, Spec_dst [4]byte
+pkg syscall (linux-amd64), type Inet6Pktinfo struct
+pkg syscall (linux-amd64), type Inet6Pktinfo struct, Addr [16]byte
+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]byte
+pkg syscall (linux-amd64), type InotifyEvent struct, Wd int32
+pkg syscall (linux-amd64), type Iovec struct
+pkg syscall (linux-amd64), type Iovec struct, Base *byte
+pkg syscall (linux-amd64), type Iovec struct, Len uint64
+pkg syscall (linux-amd64), type Msghdr struct
+pkg syscall (linux-amd64), type Msghdr struct, Control *byte
+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 *byte
+pkg syscall (linux-amd64), type Msghdr struct, Namelen uint32
+pkg syscall (linux-amd64), type Msghdr struct, Pad_cgo_0 [4]byte
+pkg syscall (linux-amd64), type Msghdr struct, Pad_cgo_1 [4]byte
+pkg syscall (linux-amd64), type NetlinkMessage struct
+pkg syscall (linux-amd64), type NetlinkMessage struct, Data []byte
+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 []byte
+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, 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]byte
+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]byte
+pkg syscall (linux-amd64), type SockaddrLinklayer struct
+pkg syscall (linux-amd64), type SockaddrLinklayer struct, Addr [8]byte
+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 []byte
+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]byte
+pkg syscall (linux-amd64), type Sysinfo_t struct, Pad_cgo_1 [4]byte
+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]byte
+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]byte
+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]byte
+pkg syscall (linux-amd64), type Timex struct, Pad_cgo_1 [4]byte
+pkg syscall (linux-amd64), type Timex struct, Pad_cgo_2 [4]byte
+pkg syscall (linux-amd64), type Timex struct, Pad_cgo_3 [44]byte
+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]byte
+pkg syscall (linux-amd64), type Ustat_t struct, Pad_cgo_1 [4]byte
+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 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 ENAVAIL Errno
+pkg syscall (linux-amd64-cgo), const ENOANO Errno
+pkg syscall (linux-amd64-cgo), const ENOCSI Errno
+pkg syscall (linux-amd64-cgo), const ENOKEY 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 ENOTNAM Errno
+pkg syscall (linux-amd64-cgo), const ENOTUNIQ 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 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 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_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([]byte) (int, error)
+pkg syscall (linux-amd64-cgo), func Getdents(int, []byte) (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) (*IPMreq, error)
+pkg syscall (linux-amd64-cgo), func GetsockoptIPMreqn(int) (*IPMreqn, error)
+pkg syscall (linux-amd64-cgo), func GetsockoptIPv6Mreq(int) (*IPv6Mreq, error)
+pkg syscall (linux-amd64-cgo), func GetsockoptInet4Addr(int) ([4]byte, error)
+pkg syscall (linux-amd64-cgo), func GetsockoptInt(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, []byte) (int, error)
+pkg syscall (linux-amd64-cgo), func Link(string, string) error
+pkg syscall (linux-amd64-cgo), func Listen(int, int) error
+pkg syscall (linux-amd64-cgo), func LsfJump(int) *SockFilter
+pkg syscall (linux-amd64-cgo), func LsfSocket(int) (int, error)
+pkg syscall (linux-amd64-cgo), func LsfStmt(int) *SockFilter
+pkg syscall (linux-amd64-cgo), func Lstat(string, *Stat_t) error
+pkg syscall (linux-amd64-cgo), func Madvise([]byte, 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([]byte) error
+pkg syscall (linux-amd64-cgo), func Mlockall(int) error
+pkg syscall (linux-amd64-cgo), func Mmap(int, int64, int, int, int) ([]byte, error)
+pkg syscall (linux-amd64-cgo), func Mount(string, string, string, uintptr, string) error
+pkg syscall (linux-amd64-cgo), func Mprotect([]byte, int) error
+pkg syscall (linux-amd64-cgo), func Munlock([]byte) error
+pkg syscall (linux-amd64-cgo), func Munlockall() error
+pkg syscall (linux-amd64-cgo), func Munmap([]byte) error
+pkg syscall (linux-amd64-cgo), func Nanosleep(*Timespec, *Timespec) error
+pkg syscall (linux-amd64-cgo), func NetlinkRIB(int) ([]byte, 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([]byte, int, []string) (int, int, []string)
+pkg syscall (linux-amd64-cgo), func ParseNetlinkMessage([]byte) ([]NetlinkMessage, error)
+pkg syscall (linux-amd64-cgo), func ParseNetlinkRouteAttr(*NetlinkMessage) ([]NetlinkRouteAttr, error)
+pkg syscall (linux-amd64-cgo), func ParseSocketControlMessage([]byte) ([]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, []byte, 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, []byte) (int, error)
+pkg syscall (linux-amd64-cgo), func PtracePeekText(int, uintptr, []byte) (int, error)
+pkg syscall (linux-amd64-cgo), func PtracePokeData(int, uintptr, []byte) (int, error)
+pkg syscall (linux-amd64-cgo), func PtracePokeText(int, uintptr, []byte) (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, []byte, int64) (int, error)
+pkg syscall (linux-amd64-cgo), func RawSyscall(uintptr) (uintptr, Errno)
+pkg syscall (linux-amd64-cgo), func RawSyscall6(uintptr) (uintptr, Errno)
+pkg syscall (linux-amd64-cgo), func Read(int, []byte) (int, error)
+pkg syscall (linux-amd64-cgo), func ReadDirent(int, []byte) (int, error)
+pkg syscall (linux-amd64-cgo), func Reboot(int) error
+pkg syscall (linux-amd64-cgo), func Recvfrom(int, []byte, int) (int, Sockaddr, error)
+pkg syscall (linux-amd64-cgo), func Recvmsg(int, []byte, int) (int, int, Sockaddr, error)
+pkg syscall (linux-amd64-cgo), func Rename(string, string) 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, []byte, Sockaddr, int) error
+pkg syscall (linux-amd64-cgo), func Sendto(int, []byte, 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([]byte) 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([]byte) 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, *IPMreq) error
+pkg syscall (linux-amd64-cgo), func SetsockoptIPMreqn(int, *IPMreqn) error
+pkg syscall (linux-amd64-cgo), func SetsockoptIPv6Mreq(int, *IPv6Mreq) error
+pkg syscall (linux-amd64-cgo), func SetsockoptInet4Addr(int, [4]byte) error
+pkg syscall (linux-amd64-cgo), func SetsockoptInt(int, int) error
+pkg syscall (linux-amd64-cgo), func SetsockoptLinger(int, *Linger) error
+pkg syscall (linux-amd64-cgo), func SetsockoptString(int, string) error
+pkg syscall (linux-amd64-cgo), func SetsockoptTimeval(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, error)
+pkg syscall (linux-amd64-cgo), func Socketpair(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) []*byte
+pkg syscall (linux-amd64-cgo), func Symlink(string, string) error
+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 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) []byte
+pkg syscall (linux-amd64-cgo), func UnixRights(...int) []byte
+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, []byte) (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]byte
+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]byte
+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]byte
+pkg syscall (linux-amd64-cgo), type IPMreqn struct, Ifindex int32
+pkg syscall (linux-amd64-cgo), type IPMreqn struct, Multiaddr [4]byte
+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]byte
+pkg syscall (linux-amd64-cgo), type Inet4Pktinfo struct, Ifindex int32
+pkg syscall (linux-amd64-cgo), type Inet4Pktinfo struct, Spec_dst [4]byte
+pkg syscall (linux-amd64-cgo), type Inet6Pktinfo struct
+pkg syscall (linux-amd64-cgo), type Inet6Pktinfo struct, Addr [16]byte
+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]byte
+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 *byte
+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 *byte
+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 *byte
+pkg syscall (linux-amd64-cgo), type Msghdr struct, Namelen uint32
+pkg syscall (linux-amd64-cgo), type Msghdr struct, Pad_cgo_0 [4]byte
+pkg syscall (linux-amd64-cgo), type Msghdr struct, Pad_cgo_1 [4]byte
+pkg syscall (linux-amd64-cgo), type NetlinkMessage struct
+pkg syscall (linux-amd64-cgo), type NetlinkMessage struct, Data []byte
+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 []byte
+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, 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]byte
+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]byte
+pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct
+pkg syscall (linux-amd64-cgo), type SockaddrLinklayer struct, Addr [8]byte
+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 []byte
+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]byte
+pkg syscall (linux-amd64-cgo), type Sysinfo_t struct, Pad_cgo_1 [4]byte
+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]byte
+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]byte
+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]byte
+pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_1 [4]byte
+pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_2 [4]byte
+pkg syscall (linux-amd64-cgo), type Timex struct, Pad_cgo_3 [44]byte
+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]byte
+pkg syscall (linux-amd64-cgo), type Ustat_t struct, Pad_cgo_1 [4]byte
+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 (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 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 ENAVAIL Errno
+pkg syscall (windows-386), const ENOANO Errno
+pkg syscall (windows-386), const ENOCSI Errno
+pkg syscall (windows-386), const ENOKEY 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 ENOTNAM Errno
+pkg syscall (windows-386), const ENOTUNIQ 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 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 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, *byte, 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, *byte, 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, *byte) 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, *byte, **DNSRecord, *byte) 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, *byte) (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(*byte, 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, *byte) 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 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, *byte, 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, error)
+pkg syscall (windows-386), func Link(string) 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) (*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(*byte) error
+pkg syscall (windows-386), func NetUserGetInfo(*uint16, *uint16, uint32, **byte) 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, []byte) (int, error)
+pkg syscall (windows-386), func ReadDirectoryChanges(Handle, *byte, uint32, bool, uint32, *uint32, *Overlapped, uintptr) error
+pkg syscall (windows-386), func ReadFile(Handle, []byte, *uint32, *Overlapped) error
+pkg syscall (windows-386), func Recvfrom(Handle, []byte, 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, *byte, *uint32) error
+pkg syscall (windows-386), func RemoveDirectory(*uint16) error
+pkg syscall (windows-386), func Rename(string) error
+pkg syscall (windows-386), func Seek(Handle, int64, int) (int64, error)
+pkg syscall (windows-386), func Sendto(Handle, []byte, 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, *byte, int32) error
+pkg syscall (windows-386), func SetsockoptIPMreq(Handle, int, *IPMreq) error
+pkg syscall (windows-386), func SetsockoptIPv6Mreq(Handle, int, *IPv6Mreq) error
+pkg syscall (windows-386), func SetsockoptInet4Addr(Handle, int, [4]byte) error
+pkg syscall (windows-386), func SetsockoptInt(Handle, int, int) error
+pkg syscall (windows-386), func SetsockoptLinger(Handle, int, *Linger) error
+pkg syscall (windows-386), func SetsockoptTimeval(Handle, int, *Timeval) error
+pkg syscall (windows-386), func Shutdown(Handle, int) error
+pkg syscall (windows-386), func Socket(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 Symlink(string) error
+pkg syscall (windows-386), func Syscall12(uintptr) (uintptr, Errno)
+pkg syscall (windows-386), func Syscall15(uintptr) (uintptr, Errno)
+pkg syscall (windows-386), func Syscall9(uintptr) (uintptr, Errno)
+pkg syscall (windows-386), func TerminateProcess(Handle, uint32) error
+pkg syscall (windows-386), func TranslateAccountName(string, 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, *byte, uint32, *byte, uint32, *uint32, *Overlapped, uintptr) error
+pkg syscall (windows-386), func WSARecv(Handle, *WSABuf, uint32, *uint32, *uint32, *Overlapped, *byte) error
+pkg syscall (windows-386), func WSARecvFrom(Handle, *WSABuf, uint32, *uint32, *uint32, *RawSockaddrAny, *int32, *Overlapped, *byte) error
+pkg syscall (windows-386), func WSASend(Handle, *WSABuf, uint32, *uint32, uint32, *Overlapped, *byte) error
+pkg syscall (windows-386), func WSASendTo(Handle, *WSABuf, uint32, *uint32, uint32, *RawSockaddrAny, int32, *Overlapped, *byte) error
+pkg syscall (windows-386), func WSASendto(Handle, *WSABuf, uint32, *uint32, uint32, Sockaddr, *Overlapped, *byte) 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, []byte) (int, error)
+pkg syscall (windows-386), func WriteFile(Handle, []byte, *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, 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, 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, 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 *byte
+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 **byte
+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 *byte
+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]byte
+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 **byte
+pkg syscall (windows-386), type Hostent struct, AddrType uint16
+pkg syscall (windows-386), type Hostent struct, Aliases **byte
+pkg syscall (windows-386), type Hostent struct, Length uint16
+pkg syscall (windows-386), type Hostent struct, Name *byte
+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 [MAX_ADAPTER_NAME_LENGTH + 4]byte
+pkg syscall (windows-386), type IpAdapterInfo struct, Address [MAX_ADAPTER_ADDRESS_LENGTH]byte
+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 [MAX_ADAPTER_DESCRIPTION_LENGTH + 4]byte
+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]byte
+pkg syscall (windows-386), type IpMaskString IpAddressString
+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 [MAXLEN_IFDESCR]byte
+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 [MAX_INTERFACE_NAME_LEN]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 [MAXLEN_PHYSADDR]byte
+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 **byte
+pkg syscall (windows-386), type Protoent struct, Name *byte
+pkg syscall (windows-386), type Protoent struct, Proto uint16
+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 **byte
+pkg syscall (windows-386), type Servent struct, Name *byte
+pkg syscall (windows-386), type Servent struct, Port uint16
+pkg syscall (windows-386), type Servent struct, Proto *byte
+pkg syscall (windows-386), type SockaddrGen [24]byte
+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 Handle
+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 *byte
+pkg syscall (windows-386), type WSABuf struct, Len uint32
+pkg syscall (windows-386), type WSAData struct
+pkg syscall (windows-386), type WSAData struct, Description [WSADESCRIPTION_LEN + 1]byte
+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 [WSASYS_STATUS_LEN + 1]byte
+pkg syscall (windows-386), type WSAData struct, VendorInfo *byte
+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 [MAX_PATH - 1]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 []byte
+pkg syscall (windows-386), var OID_SERVER_GATED_CRYPTO []byte
+pkg syscall (windows-386), var OID_SGC_NETSCAPE []byte
+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 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 ENAVAIL Errno
+pkg syscall (windows-amd64), const ENOANO Errno
+pkg syscall (windows-amd64), const ENOCSI Errno
+pkg syscall (windows-amd64), const ENOKEY 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 ENOTNAM Errno
+pkg syscall (windows-amd64), const ENOTUNIQ 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 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 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, *byte, 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, *byte, 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, *byte) 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, *byte, **DNSRecord, *byte) 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, *byte) (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(*byte, 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, *byte) 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 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, *byte, 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, error)
+pkg syscall (windows-amd64), func Link(string) 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) (*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(*byte) error
+pkg syscall (windows-amd64), func NetUserGetInfo(*uint16, *uint16, uint32, **byte) 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, []byte) (int, error)
+pkg syscall (windows-amd64), func ReadDirectoryChanges(Handle, *byte, uint32, bool, uint32, *uint32, *Overlapped, uintptr) error
+pkg syscall (windows-amd64), func ReadFile(Handle, []byte, *uint32, *Overlapped) error
+pkg syscall (windows-amd64), func Recvfrom(Handle, []byte, 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, *byte, *uint32) error
+pkg syscall (windows-amd64), func RemoveDirectory(*uint16) error
+pkg syscall (windows-amd64), func Rename(string) error
+pkg syscall (windows-amd64), func Seek(Handle, int64, int) (int64, error)
+pkg syscall (windows-amd64), func Sendto(Handle, []byte, 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, *byte, int32) error
+pkg syscall (windows-amd64), func SetsockoptIPMreq(Handle, int, *IPMreq) error
+pkg syscall (windows-amd64), func SetsockoptIPv6Mreq(Handle, int, *IPv6Mreq) error
+pkg syscall (windows-amd64), func SetsockoptInet4Addr(Handle, int, [4]byte) error
+pkg syscall (windows-amd64), func SetsockoptInt(Handle, int, int) error
+pkg syscall (windows-amd64), func SetsockoptLinger(Handle, int, *Linger) error
+pkg syscall (windows-amd64), func SetsockoptTimeval(Handle, int, *Timeval) error
+pkg syscall (windows-amd64), func Shutdown(Handle, int) error
+pkg syscall (windows-amd64), func Socket(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 Symlink(string) error
+pkg syscall (windows-amd64), func Syscall12(uintptr) (uintptr, Errno)
+pkg syscall (windows-amd64), func Syscall15(uintptr) (uintptr, Errno)
+pkg syscall (windows-amd64), func Syscall9(uintptr) (uintptr, Errno)
+pkg syscall (windows-amd64), func TerminateProcess(Handle, uint32) error
+pkg syscall (windows-amd64), func TranslateAccountName(string, 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, *byte, uint32, *byte, uint32, *uint32, *Overlapped, uintptr) error
+pkg syscall (windows-amd64), func WSARecv(Handle, *WSABuf, uint32, *uint32, *uint32, *Overlapped, *byte) error
+pkg syscall (windows-amd64), func WSARecvFrom(Handle, *WSABuf, uint32, *uint32, *uint32, *RawSockaddrAny, *int32, *Overlapped, *byte) error
+pkg syscall (windows-amd64), func WSASend(Handle, *WSABuf, uint32, *uint32, uint32, *Overlapped, *byte) error
+pkg syscall (windows-amd64), func WSASendTo(Handle, *WSABuf, uint32, *uint32, uint32, *RawSockaddrAny, int32, *Overlapped, *byte) error
+pkg syscall (windows-amd64), func WSASendto(Handle, *WSABuf, uint32, *uint32, uint32, Sockaddr, *Overlapped, *byte) 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, []byte) (int, error)
+pkg syscall (windows-amd64), func WriteFile(Handle, []byte, *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, 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, 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, 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 *byte
+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 **byte
+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 *byte
+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]byte
+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 **byte
+pkg syscall (windows-amd64), type Hostent struct, AddrType uint16
+pkg syscall (windows-amd64), type Hostent struct, Aliases **byte
+pkg syscall (windows-amd64), type Hostent struct, Length uint16
+pkg syscall (windows-amd64), type Hostent struct, Name *byte
+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 [MAX_ADAPTER_NAME_LENGTH + 4]byte
+pkg syscall (windows-amd64), type IpAdapterInfo struct, Address [MAX_ADAPTER_ADDRESS_LENGTH]byte
+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 [MAX_ADAPTER_DESCRIPTION_LENGTH + 4]byte
+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]byte
+pkg syscall (windows-amd64), type IpMaskString IpAddressString
+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 [MAXLEN_IFDESCR]byte
+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 [MAX_INTERFACE_NAME_LEN]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 [MAXLEN_PHYSADDR]byte
+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 **byte
+pkg syscall (windows-amd64), type Protoent struct, Name *byte
+pkg syscall (windows-amd64), type Protoent struct, Proto uint16
+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 **byte
+pkg syscall (windows-amd64), type Servent struct, Name *byte
+pkg syscall (windows-amd64), type Servent struct, Port uint16
+pkg syscall (windows-amd64), type Servent struct, Proto *byte
+pkg syscall (windows-amd64), type SockaddrGen [24]byte
+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 Handle
+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 *byte
+pkg syscall (windows-amd64), type WSABuf struct, Len uint32
+pkg syscall (windows-amd64), type WSAData struct
+pkg syscall (windows-amd64), type WSAData struct, Description [WSADESCRIPTION_LEN + 1]byte
+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 [WSASYS_STATUS_LEN + 1]byte
+pkg syscall (windows-amd64), type WSAData struct, VendorInfo *byte
+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 [MAX_PATH - 1]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 []byte
+pkg syscall (windows-amd64), var OID_SERVER_GATED_CRYPTO []byte
+pkg syscall (windows-amd64), var OID_SGC_NETSCAPE []byte
+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 EBADMSG 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 EMULTIHOP 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 ENODATA Errno
+pkg syscall, const ENODEV Errno
+pkg syscall, const ENOENT Errno
+pkg syscall, const ENOEXEC Errno
+pkg syscall, const ENOLCK Errno
+pkg syscall, const ENOLINK Errno
+pkg syscall, const ENOMEM Errno
+pkg syscall, const ENOMSG Errno
+pkg syscall, const ENOPROTOOPT Errno
+pkg syscall, const ENOSPC Errno
+pkg syscall, const ENOSR Errno
+pkg syscall, const ENOSTR 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 ENOTRECOVERABLE 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 EOWNERDEAD Errno
+pkg syscall, const EPERM Errno
+pkg syscall, const EPFNOSUPPORT Errno
+pkg syscall, const EPIPE Errno
+pkg syscall, const EPROTO 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 ETIME 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 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_IWRITE 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 Mkdir(string, uint32) error
+pkg syscall, func NsecToTimeval(int64) Timeval
+pkg syscall, func Readlink(string, []byte) (int, error)
+pkg syscall, func Rmdir(string) error
+pkg syscall, func Setenv(string) error
+pkg syscall, func StartProcess(string, []string, *ProcAttr) (int, uintptr, error)
+pkg syscall, func StringBytePtr(string) *byte
+pkg syscall, func StringByteSlice(string) []byte
+pkg syscall, func Syscall(uintptr) (uintptr, Errno)
+pkg syscall, func Syscall6(uintptr) (uintptr, Errno)
+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]byte
+pkg syscall, type IPMreq struct, Multiaddr [4]byte
+pkg syscall, type IPv6Mreq struct
+pkg syscall, type IPv6Mreq struct, Interface uint32
+pkg syscall, type IPv6Mreq struct, Multiaddr [16]byte
+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 RawSockaddr struct, Data [14]int8
+pkg syscall, type RawSockaddrAny struct
+pkg syscall, type RawSockaddrAny struct, Addr RawSockaddr
+pkg syscall, type RawSockaddrInet4 struct
+pkg syscall, type RawSockaddrInet4 struct, Addr [4]byte
+pkg syscall, type RawSockaddrInet4 struct, Port uint16
+pkg syscall, type Rusage struct
+pkg syscall, type Signal int
+pkg syscall, type Sockaddr interface {}
+pkg syscall, type SockaddrInet4 struct
+pkg syscall, type SockaddrInet4 struct, Addr [4]byte
+pkg syscall, type SockaddrInet4 struct, Port int
+pkg syscall, type SockaddrInet6 struct
+pkg syscall, type SockaddrInet6 struct, Addr [16]byte
+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) (bool, error), []InternalTest, []InternalBenchmark, []InternalExample)
+pkg testing, func RunBenchmarks(func(string) (bool, error), []InternalBenchmark)
+pkg testing, func RunExamples(func(string) (bool, error), []InternalExample) bool
+pkg testing, func RunTests(func(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{}, *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(rune) 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() rune
+pkg text/scanner, method (*Scanner) Peek() rune
+pkg text/scanner, method (*Scanner) Pos() Position
+pkg text/scanner, method (*Scanner) Scan() rune
+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, byte, uint) *Writer
+pkg text/tabwriter, method (*Writer) Flush() error
+pkg text/tabwriter, method (*Writer) Init(io.Writer, int, byte, uint) *Writer
+pkg text/tabwriter, method (*Writer) Write([]byte) (int, error)
+pkg text/tabwriter, type Writer struct
+pkg text/template, func HTMLEscape(io.Writer, []byte)
+pkg text/template, func HTMLEscapeString(string) string
+pkg text/template, func HTMLEscaper(...interface{}) string
+pkg text/template, func JSEscape(io.Writer, []byte)
+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) *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, ...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, 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 []byte
+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, *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) (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([]byte) error
+pkg time, method (*Time) UnmarshalJSON([]byte) 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
+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() ([]byte, error)
+pkg time, method (Time) Hour() int
+pkg time, method (Time) ISOWeek() 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() ([]byte, 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-int
+pkg unicode, const Version ideal-string
+pkg unicode, func Is(*RangeTable, rune) bool
+pkg unicode, func IsControl(rune) bool
+pkg unicode, func IsDigit(rune) bool
+pkg unicode, func IsGraphic(rune) bool
+pkg unicode, func IsLetter(rune) bool
+pkg unicode, func IsLower(rune) bool
+pkg unicode, func IsMark(rune) bool
+pkg unicode, func IsNumber(rune) bool
+pkg unicode, func IsOneOf([]*RangeTable, rune) bool
+pkg unicode, func IsPrint(rune) bool
+pkg unicode, func IsPunct(rune) bool
+pkg unicode, func IsSpace(rune) bool
+pkg unicode, func IsSymbol(rune) bool
+pkg unicode, func IsTitle(rune) bool
+pkg unicode, func IsUpper(rune) bool
+pkg unicode, func SimpleFold(rune) rune
+pkg unicode, func To(int, rune) rune
+pkg unicode, func ToLower(rune) rune
+pkg unicode, func ToTitle(rune) rune
+pkg unicode, func ToUpper(rune) rune
+pkg unicode, method (SpecialCase) ToLower(rune) rune
+pkg unicode, method (SpecialCase) ToTitle(rune) rune
+pkg unicode, method (SpecialCase) ToUpper(rune) rune
+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) []rune
+pkg unicode/utf16, func DecodeRune(rune) rune
+pkg unicode/utf16, func Encode([]rune) []uint16
+pkg unicode/utf16, func EncodeRune(rune) rune
+pkg unicode/utf16, func IsSurrogate(rune) 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([]byte) (rune, int)
+pkg unicode/utf8, func DecodeLastRuneInString(string) (rune, int)
+pkg unicode/utf8, func DecodeRune([]byte) (rune, int)
+pkg unicode/utf8, func DecodeRuneInString(string) (rune, int)
+pkg unicode/utf8, func EncodeRune([]byte, rune) int
+pkg unicode/utf8, func FullRune([]byte) bool
+pkg unicode/utf8, func FullRuneInString(string) bool
+pkg unicode/utf8, func RuneCount([]byte) int
+pkg unicode/utf8, func RuneCountInString(string) int
+pkg unicode/utf8, func RuneLen(rune) int
+pkg unicode/utf8, func RuneStart(byte) bool
+pkg unicode/utf8, func Valid([]byte) bool
+pkg unicode/utf8, func ValidString(string) bool
+pkg unsafe, func Alignof(ArbitraryType) uintptr
+pkg unsafe, func Offsetof(ArbitraryType) uintptr
+pkg unsafe, func Sizeof(ArbitraryType) uintptr
+pkg unsafe, type ArbitraryType int
+pkg unsafe, type Pointer *ArbitraryType