Text file api/go1.txt

     1  pkg archive/tar, const TypeBlock ideal-char
     2  pkg archive/tar, const TypeChar ideal-char
     3  pkg archive/tar, const TypeCont ideal-char
     4  pkg archive/tar, const TypeDir ideal-char
     5  pkg archive/tar, const TypeFifo ideal-char
     6  pkg archive/tar, const TypeLink ideal-char
     7  pkg archive/tar, const TypeReg ideal-char
     8  pkg archive/tar, const TypeRegA ideal-char
     9  pkg archive/tar, const TypeSymlink ideal-char
    10  pkg archive/tar, const TypeXGlobalHeader ideal-char
    11  pkg archive/tar, const TypeXHeader ideal-char
    12  pkg archive/tar, func NewReader(io.Reader) *Reader
    13  pkg archive/tar, func NewWriter(io.Writer) *Writer
    14  pkg archive/tar, method (*Reader) Next() (*Header, error)
    15  pkg archive/tar, method (*Reader) Read([]uint8) (int, error)
    16  pkg archive/tar, method (*Writer) Close() error
    17  pkg archive/tar, method (*Writer) Flush() error
    18  pkg archive/tar, method (*Writer) Write([]uint8) (int, error)
    19  pkg archive/tar, method (*Writer) WriteHeader(*Header) error
    20  pkg archive/tar, type Header struct
    21  pkg archive/tar, type Header struct, AccessTime time.Time
    22  pkg archive/tar, type Header struct, ChangeTime time.Time
    23  pkg archive/tar, type Header struct, Devmajor int64
    24  pkg archive/tar, type Header struct, Devminor int64
    25  pkg archive/tar, type Header struct, Gid int
    26  pkg archive/tar, type Header struct, Gname string
    27  pkg archive/tar, type Header struct, Linkname string
    28  pkg archive/tar, type Header struct, ModTime time.Time
    29  pkg archive/tar, type Header struct, Mode int64
    30  pkg archive/tar, type Header struct, Name string
    31  pkg archive/tar, type Header struct, Size int64
    32  pkg archive/tar, type Header struct, Typeflag uint8
    33  pkg archive/tar, type Header struct, Uid int
    34  pkg archive/tar, type Header struct, Uname string
    35  pkg archive/tar, type Reader struct
    36  pkg archive/tar, type Writer struct
    37  pkg archive/tar, var ErrFieldTooLong error
    38  pkg archive/tar, var ErrHeader error
    39  pkg archive/tar, var ErrWriteAfterClose error
    40  pkg archive/tar, var ErrWriteTooLong error
    41  pkg archive/zip, const Deflate uint16
    42  pkg archive/zip, const Store uint16
    43  pkg archive/zip, func FileInfoHeader(os.FileInfo) (*FileHeader, error)
    44  pkg archive/zip, func NewReader(io.ReaderAt, int64) (*Reader, error)
    45  pkg archive/zip, func NewWriter(io.Writer) *Writer
    46  pkg archive/zip, func OpenReader(string) (*ReadCloser, error)
    47  pkg archive/zip, method (*File) FileInfo() os.FileInfo
    48  pkg archive/zip, method (*File) ModTime() time.Time
    49  pkg archive/zip, method (*File) Mode() os.FileMode
    50  pkg archive/zip, method (*File) Open() (io.ReadCloser, error)
    51  pkg archive/zip, method (*File) SetModTime(time.Time)
    52  pkg archive/zip, method (*File) SetMode(os.FileMode)
    53  pkg archive/zip, method (*FileHeader) FileInfo() os.FileInfo
    54  pkg archive/zip, method (*FileHeader) ModTime() time.Time
    55  pkg archive/zip, method (*FileHeader) Mode() os.FileMode
    56  pkg archive/zip, method (*FileHeader) SetModTime(time.Time)
    57  pkg archive/zip, method (*FileHeader) SetMode(os.FileMode)
    58  pkg archive/zip, method (*ReadCloser) Close() error
    59  pkg archive/zip, method (*Writer) Close() error
    60  pkg archive/zip, method (*Writer) Create(string) (io.Writer, error)
    61  pkg archive/zip, method (*Writer) CreateHeader(*FileHeader) (io.Writer, error)
    62  pkg archive/zip, type File struct
    63  pkg archive/zip, type File struct, embedded FileHeader
    64  pkg archive/zip, type FileHeader struct
    65  pkg archive/zip, type FileHeader struct, CRC32 uint32
    66  pkg archive/zip, type FileHeader struct, Comment string
    67  pkg archive/zip, type FileHeader struct, CompressedSize uint32
    68  pkg archive/zip, type FileHeader struct, CreatorVersion uint16
    69  pkg archive/zip, type FileHeader struct, ExternalAttrs uint32
    70  pkg archive/zip, type FileHeader struct, Extra []uint8
    71  pkg archive/zip, type FileHeader struct, Flags uint16
    72  pkg archive/zip, type FileHeader struct, Method uint16
    73  pkg archive/zip, type FileHeader struct, ModifiedDate uint16
    74  pkg archive/zip, type FileHeader struct, ModifiedTime uint16
    75  pkg archive/zip, type FileHeader struct, Name string
    76  pkg archive/zip, type FileHeader struct, ReaderVersion uint16
    77  pkg archive/zip, type FileHeader struct, UncompressedSize uint32
    78  pkg archive/zip, type ReadCloser struct
    79  pkg archive/zip, type ReadCloser struct, embedded Reader
    80  pkg archive/zip, type Reader struct
    81  pkg archive/zip, type Reader struct, Comment string
    82  pkg archive/zip, type Reader struct, File []*File
    83  pkg archive/zip, type Writer struct
    84  pkg archive/zip, var ErrAlgorithm error
    85  pkg archive/zip, var ErrChecksum error
    86  pkg archive/zip, var ErrFormat error
    87  pkg bufio, func NewReadWriter(*Reader, *Writer) *ReadWriter
    88  pkg bufio, func NewReader(io.Reader) *Reader
    89  pkg bufio, func NewReaderSize(io.Reader, int) *Reader
    90  pkg bufio, func NewWriter(io.Writer) *Writer
    91  pkg bufio, func NewWriterSize(io.Writer, int) *Writer
    92  pkg bufio, method (*Reader) Buffered() int
    93  pkg bufio, method (*Reader) Peek(int) ([]uint8, error)
    94  pkg bufio, method (*Reader) Read([]uint8) (int, error)
    95  pkg bufio, method (*Reader) ReadByte() (uint8, error)
    96  pkg bufio, method (*Reader) ReadBytes(uint8) ([]uint8, error)
    97  pkg bufio, method (*Reader) ReadLine() ([]uint8, bool, error)
    98  pkg bufio, method (*Reader) ReadRune() (int32, int, error)
    99  pkg bufio, method (*Reader) ReadSlice(uint8) ([]uint8, error)
   100  pkg bufio, method (*Reader) ReadString(uint8) (string, error)
   101  pkg bufio, method (*Reader) UnreadByte() error
   102  pkg bufio, method (*Reader) UnreadRune() error
   103  pkg bufio, method (*Writer) Available() int
   104  pkg bufio, method (*Writer) Buffered() int
   105  pkg bufio, method (*Writer) Flush() error
   106  pkg bufio, method (*Writer) Write([]uint8) (int, error)
   107  pkg bufio, method (*Writer) WriteByte(uint8) error
   108  pkg bufio, method (*Writer) WriteRune(int32) (int, error)
   109  pkg bufio, method (*Writer) WriteString(string) (int, error)
   110  pkg bufio, method (ReadWriter) Available() int
   111  pkg bufio, method (ReadWriter) Flush() error
   112  pkg bufio, method (ReadWriter) Peek(int) ([]uint8, error)
   113  pkg bufio, method (ReadWriter) Read([]uint8) (int, error)
   114  pkg bufio, method (ReadWriter) ReadByte() (uint8, error)
   115  pkg bufio, method (ReadWriter) ReadBytes(uint8) ([]uint8, error)
   116  pkg bufio, method (ReadWriter) ReadLine() ([]uint8, bool, error)
   117  pkg bufio, method (ReadWriter) ReadRune() (int32, int, error)
   118  pkg bufio, method (ReadWriter) ReadSlice(uint8) ([]uint8, error)
   119  pkg bufio, method (ReadWriter) ReadString(uint8) (string, error)
   120  pkg bufio, method (ReadWriter) UnreadByte() error
   121  pkg bufio, method (ReadWriter) UnreadRune() error
   122  pkg bufio, method (ReadWriter) Write([]uint8) (int, error)
   123  pkg bufio, method (ReadWriter) WriteByte(uint8) error
   124  pkg bufio, method (ReadWriter) WriteRune(int32) (int, error)
   125  pkg bufio, method (ReadWriter) WriteString(string) (int, error)
   126  pkg bufio, type ReadWriter struct
   127  pkg bufio, type ReadWriter struct, embedded *Reader
   128  pkg bufio, type ReadWriter struct, embedded *Writer
   129  pkg bufio, type Reader struct
   130  pkg bufio, type Writer struct
   131  pkg bufio, var ErrBufferFull error
   132  pkg bufio, var ErrInvalidUnreadByte error
   133  pkg bufio, var ErrInvalidUnreadRune error
   134  pkg bufio, var ErrNegativeCount error
   135  pkg bytes, const MinRead ideal-int
   136  pkg bytes, func Compare([]uint8, []uint8) int
   137  pkg bytes, func Contains([]uint8, []uint8) bool
   138  pkg bytes, func Count([]uint8, []uint8) int
   139  pkg bytes, func Equal([]uint8, []uint8) bool
   140  pkg bytes, func EqualFold([]uint8, []uint8) bool
   141  pkg bytes, func Fields([]uint8) [][]uint8
   142  pkg bytes, func FieldsFunc([]uint8, func(int32) bool) [][]uint8
   143  pkg bytes, func HasPrefix([]uint8, []uint8) bool
   144  pkg bytes, func HasSuffix([]uint8, []uint8) bool
   145  pkg bytes, func Index([]uint8, []uint8) int
   146  pkg bytes, func IndexAny([]uint8, string) int
   147  pkg bytes, func IndexByte([]uint8, uint8) int
   148  pkg bytes, func IndexFunc([]uint8, func(int32) bool) int
   149  pkg bytes, func IndexRune([]uint8, int32) int
   150  pkg bytes, func Join([][]uint8, []uint8) []uint8
   151  pkg bytes, func LastIndex([]uint8, []uint8) int
   152  pkg bytes, func LastIndexAny([]uint8, string) int
   153  pkg bytes, func LastIndexFunc([]uint8, func(int32) bool) int
   154  pkg bytes, func Map(func(int32) int32, []uint8) []uint8
   155  pkg bytes, func NewBuffer([]uint8) *Buffer
   156  pkg bytes, func NewBufferString(string) *Buffer
   157  pkg bytes, func NewReader([]uint8) *Reader
   158  pkg bytes, func Repeat([]uint8, int) []uint8
   159  pkg bytes, func Replace([]uint8, []uint8, []uint8, int) []uint8
   160  pkg bytes, func Runes([]uint8) []int32
   161  pkg bytes, func Split([]uint8, []uint8) [][]uint8
   162  pkg bytes, func SplitAfter([]uint8, []uint8) [][]uint8
   163  pkg bytes, func SplitAfterN([]uint8, []uint8, int) [][]uint8
   164  pkg bytes, func SplitN([]uint8, []uint8, int) [][]uint8
   165  pkg bytes, func Title([]uint8) []uint8
   166  pkg bytes, func ToLower([]uint8) []uint8
   167  pkg bytes, func ToLowerSpecial(unicode.SpecialCase, []uint8) []uint8
   168  pkg bytes, func ToTitle([]uint8) []uint8
   169  pkg bytes, func ToTitleSpecial(unicode.SpecialCase, []uint8) []uint8
   170  pkg bytes, func ToUpper([]uint8) []uint8
   171  pkg bytes, func ToUpperSpecial(unicode.SpecialCase, []uint8) []uint8
   172  pkg bytes, func Trim([]uint8, string) []uint8
   173  pkg bytes, func TrimFunc([]uint8, func(int32) bool) []uint8
   174  pkg bytes, func TrimLeft([]uint8, string) []uint8
   175  pkg bytes, func TrimLeftFunc([]uint8, func(int32) bool) []uint8
   176  pkg bytes, func TrimRight([]uint8, string) []uint8
   177  pkg bytes, func TrimRightFunc([]uint8, func(int32) bool) []uint8
   178  pkg bytes, func TrimSpace([]uint8) []uint8
   179  pkg bytes, method (*Buffer) Bytes() []uint8
   180  pkg bytes, method (*Buffer) Len() int
   181  pkg bytes, method (*Buffer) Next(int) []uint8
   182  pkg bytes, method (*Buffer) Read([]uint8) (int, error)
   183  pkg bytes, method (*Buffer) ReadByte() (uint8, error)
   184  pkg bytes, method (*Buffer) ReadBytes(uint8) ([]uint8, error)
   185  pkg bytes, method (*Buffer) ReadFrom(io.Reader) (int64, error)
   186  pkg bytes, method (*Buffer) ReadRune() (int32, int, error)
   187  pkg bytes, method (*Buffer) ReadString(uint8) (string, error)
   188  pkg bytes, method (*Buffer) Reset()
   189  pkg bytes, method (*Buffer) String() string
   190  pkg bytes, method (*Buffer) Truncate(int)
   191  pkg bytes, method (*Buffer) UnreadByte() error
   192  pkg bytes, method (*Buffer) UnreadRune() error
   193  pkg bytes, method (*Buffer) Write([]uint8) (int, error)
   194  pkg bytes, method (*Buffer) WriteByte(uint8) error
   195  pkg bytes, method (*Buffer) WriteRune(int32) (int, error)
   196  pkg bytes, method (*Buffer) WriteString(string) (int, error)
   197  pkg bytes, method (*Buffer) WriteTo(io.Writer) (int64, error)
   198  pkg bytes, method (*Reader) Len() int
   199  pkg bytes, method (*Reader) Read([]uint8) (int, error)
   200  pkg bytes, method (*Reader) ReadAt([]uint8, int64) (int, error)
   201  pkg bytes, method (*Reader) ReadByte() (uint8, error)
   202  pkg bytes, method (*Reader) ReadRune() (int32, int, error)
   203  pkg bytes, method (*Reader) Seek(int64, int) (int64, error)
   204  pkg bytes, method (*Reader) UnreadByte() error
   205  pkg bytes, method (*Reader) UnreadRune() error
   206  pkg bytes, type Buffer struct
   207  pkg bytes, type Reader struct
   208  pkg bytes, var ErrTooLarge error
   209  pkg compress/bzip2, func NewReader(io.Reader) io.Reader
   210  pkg compress/bzip2, method (StructuralError) Error() string
   211  pkg compress/bzip2, type StructuralError string
   212  pkg compress/flate, const BestCompression ideal-int
   213  pkg compress/flate, const BestSpeed ideal-int
   214  pkg compress/flate, const DefaultCompression ideal-int
   215  pkg compress/flate, const NoCompression ideal-int
   216  pkg compress/flate, func NewReader(io.Reader) io.ReadCloser
   217  pkg compress/flate, func NewReaderDict(io.Reader, []uint8) io.ReadCloser
   218  pkg compress/flate, func NewWriter(io.Writer, int) (*Writer, error)
   219  pkg compress/flate, func NewWriterDict(io.Writer, int, []uint8) (*Writer, error)
   220  pkg compress/flate, method (*ReadError) Error() string
   221  pkg compress/flate, method (*WriteError) Error() string
   222  pkg compress/flate, method (*Writer) Close() error
   223  pkg compress/flate, method (*Writer) Flush() error
   224  pkg compress/flate, method (*Writer) Write([]uint8) (int, error)
   225  pkg compress/flate, method (CorruptInputError) Error() string
   226  pkg compress/flate, method (InternalError) Error() string
   227  pkg compress/flate, type CorruptInputError int64
   228  pkg compress/flate, type InternalError string
   229  pkg compress/flate, type ReadError struct
   230  pkg compress/flate, type ReadError struct, Err error
   231  pkg compress/flate, type ReadError struct, Offset int64
   232  pkg compress/flate, type Reader interface { Read, ReadByte }
   233  pkg compress/flate, type Reader interface, Read([]uint8) (int, error)
   234  pkg compress/flate, type Reader interface, ReadByte() (uint8, error)
   235  pkg compress/flate, type WriteError struct
   236  pkg compress/flate, type WriteError struct, Err error
   237  pkg compress/flate, type WriteError struct, Offset int64
   238  pkg compress/flate, type Writer struct
   239  pkg compress/gzip, const BestCompression ideal-int
   240  pkg compress/gzip, const BestSpeed ideal-int
   241  pkg compress/gzip, const DefaultCompression ideal-int
   242  pkg compress/gzip, const NoCompression ideal-int
   243  pkg compress/gzip, func NewReader(io.Reader) (*Reader, error)
   244  pkg compress/gzip, func NewWriter(io.Writer) *Writer
   245  pkg compress/gzip, func NewWriterLevel(io.Writer, int) (*Writer, error)
   246  pkg compress/gzip, method (*Reader) Close() error
   247  pkg compress/gzip, method (*Reader) Read([]uint8) (int, error)
   248  pkg compress/gzip, method (*Writer) Close() error
   249  pkg compress/gzip, method (*Writer) Write([]uint8) (int, error)
   250  pkg compress/gzip, type Header struct
   251  pkg compress/gzip, type Header struct, Comment string
   252  pkg compress/gzip, type Header struct, Extra []uint8
   253  pkg compress/gzip, type Header struct, ModTime time.Time
   254  pkg compress/gzip, type Header struct, Name string
   255  pkg compress/gzip, type Header struct, OS uint8
   256  pkg compress/gzip, type Reader struct
   257  pkg compress/gzip, type Reader struct, embedded Header
   258  pkg compress/gzip, type Writer struct
   259  pkg compress/gzip, type Writer struct, embedded Header
   260  pkg compress/gzip, var ErrChecksum error
   261  pkg compress/gzip, var ErrHeader error
   262  pkg compress/lzw, const LSB Order
   263  pkg compress/lzw, const MSB Order
   264  pkg compress/lzw, func NewReader(io.Reader, Order, int) io.ReadCloser
   265  pkg compress/lzw, func NewWriter(io.Writer, Order, int) io.WriteCloser
   266  pkg compress/lzw, type Order int
   267  pkg compress/zlib, const BestCompression ideal-int
   268  pkg compress/zlib, const BestSpeed ideal-int
   269  pkg compress/zlib, const DefaultCompression ideal-int
   270  pkg compress/zlib, const NoCompression ideal-int
   271  pkg compress/zlib, func NewReader(io.Reader) (io.ReadCloser, error)
   272  pkg compress/zlib, func NewReaderDict(io.Reader, []uint8) (io.ReadCloser, error)
   273  pkg compress/zlib, func NewWriter(io.Writer) *Writer
   274  pkg compress/zlib, func NewWriterLevel(io.Writer, int) (*Writer, error)
   275  pkg compress/zlib, func NewWriterLevelDict(io.Writer, int, []uint8) (*Writer, error)
   276  pkg compress/zlib, method (*Writer) Close() error
   277  pkg compress/zlib, method (*Writer) Flush() error
   278  pkg compress/zlib, method (*Writer) Write([]uint8) (int, error)
   279  pkg compress/zlib, type Writer struct
   280  pkg compress/zlib, var ErrChecksum error
   281  pkg compress/zlib, var ErrDictionary error
   282  pkg compress/zlib, var ErrHeader error
   283  pkg container/heap, func Init(Interface)
   284  pkg container/heap, func Pop(Interface) interface{}
   285  pkg container/heap, func Push(Interface, interface{})
   286  pkg container/heap, func Remove(Interface, int) interface{}
   287  pkg container/heap, type Interface interface { Len, Less, Pop, Push, Swap }
   288  pkg container/heap, type Interface interface, Len() int
   289  pkg container/heap, type Interface interface, Less(int, int) bool
   290  pkg container/heap, type Interface interface, Pop() interface{}
   291  pkg container/heap, type Interface interface, Push(interface{})
   292  pkg container/heap, type Interface interface, Swap(int, int)
   293  pkg container/list, func New() *List
   294  pkg container/list, method (*Element) Next() *Element
   295  pkg container/list, method (*Element) Prev() *Element
   296  pkg container/list, method (*List) Back() *Element
   297  pkg container/list, method (*List) Front() *Element
   298  pkg container/list, method (*List) Init() *List
   299  pkg container/list, method (*List) InsertAfter(interface{}, *Element) *Element
   300  pkg container/list, method (*List) InsertBefore(interface{}, *Element) *Element
   301  pkg container/list, method (*List) Len() int
   302  pkg container/list, method (*List) MoveToBack(*Element)
   303  pkg container/list, method (*List) MoveToFront(*Element)
   304  pkg container/list, method (*List) PushBack(interface{}) *Element
   305  pkg container/list, method (*List) PushBackList(*List)
   306  pkg container/list, method (*List) PushFront(interface{}) *Element
   307  pkg container/list, method (*List) PushFrontList(*List)
   308  pkg container/list, method (*List) Remove(*Element) interface{}
   309  pkg container/list, type Element struct
   310  pkg container/list, type Element struct, Value interface{}
   311  pkg container/list, type List struct
   312  pkg container/ring, func New(int) *Ring
   313  pkg container/ring, method (*Ring) Do(func(interface{}))
   314  pkg container/ring, method (*Ring) Len() int
   315  pkg container/ring, method (*Ring) Link(*Ring) *Ring
   316  pkg container/ring, method (*Ring) Move(int) *Ring
   317  pkg container/ring, method (*Ring) Next() *Ring
   318  pkg container/ring, method (*Ring) Prev() *Ring
   319  pkg container/ring, method (*Ring) Unlink(int) *Ring
   320  pkg container/ring, type Ring struct
   321  pkg container/ring, type Ring struct, Value interface{}
   322  pkg crypto, const MD4 Hash
   323  pkg crypto, const MD5 Hash
   324  pkg crypto, const MD5SHA1 Hash
   325  pkg crypto, const RIPEMD160 Hash
   326  pkg crypto, const SHA1 Hash
   327  pkg crypto, const SHA224 Hash
   328  pkg crypto, const SHA256 Hash
   329  pkg crypto, const SHA384 Hash
   330  pkg crypto, const SHA512 Hash
   331  pkg crypto, func RegisterHash(Hash, func() hash.Hash)
   332  pkg crypto, method (Hash) Available() bool
   333  pkg crypto, method (Hash) New() hash.Hash
   334  pkg crypto, method (Hash) Size() int
   335  pkg crypto, type Hash uint
   336  pkg crypto, type PrivateKey interface {}
   337  pkg crypto/aes, const BlockSize ideal-int
   338  pkg crypto/aes, func NewCipher([]uint8) (cipher.Block, error)
   339  pkg crypto/aes, method (KeySizeError) Error() string
   340  pkg crypto/aes, type KeySizeError int
   341  pkg crypto/cipher, func NewCBCDecrypter(Block, []uint8) BlockMode
   342  pkg crypto/cipher, func NewCBCEncrypter(Block, []uint8) BlockMode
   343  pkg crypto/cipher, func NewCFBDecrypter(Block, []uint8) Stream
   344  pkg crypto/cipher, func NewCFBEncrypter(Block, []uint8) Stream
   345  pkg crypto/cipher, func NewCTR(Block, []uint8) Stream
   346  pkg crypto/cipher, func NewOFB(Block, []uint8) Stream
   347  pkg crypto/cipher, method (StreamReader) Read([]uint8) (int, error)
   348  pkg crypto/cipher, method (StreamWriter) Close() error
   349  pkg crypto/cipher, method (StreamWriter) Write([]uint8) (int, error)
   350  pkg crypto/cipher, type Block interface { BlockSize, Decrypt, Encrypt }
   351  pkg crypto/cipher, type Block interface, BlockSize() int
   352  pkg crypto/cipher, type Block interface, Decrypt([]uint8, []uint8)
   353  pkg crypto/cipher, type Block interface, Encrypt([]uint8, []uint8)
   354  pkg crypto/cipher, type BlockMode interface { BlockSize, CryptBlocks }
   355  pkg crypto/cipher, type BlockMode interface, BlockSize() int
   356  pkg crypto/cipher, type BlockMode interface, CryptBlocks([]uint8, []uint8)
   357  pkg crypto/cipher, type Stream interface { XORKeyStream }
   358  pkg crypto/cipher, type Stream interface, XORKeyStream([]uint8, []uint8)
   359  pkg crypto/cipher, type StreamReader struct
   360  pkg crypto/cipher, type StreamReader struct, R io.Reader
   361  pkg crypto/cipher, type StreamReader struct, S Stream
   362  pkg crypto/cipher, type StreamWriter struct
   363  pkg crypto/cipher, type StreamWriter struct, Err error
   364  pkg crypto/cipher, type StreamWriter struct, S Stream
   365  pkg crypto/cipher, type StreamWriter struct, W io.Writer
   366  pkg crypto/des, const BlockSize ideal-int
   367  pkg crypto/des, func NewCipher([]uint8) (cipher.Block, error)
   368  pkg crypto/des, func NewTripleDESCipher([]uint8) (cipher.Block, error)
   369  pkg crypto/des, method (KeySizeError) Error() string
   370  pkg crypto/des, type KeySizeError int
   371  pkg crypto/dsa, const L1024N160 ParameterSizes
   372  pkg crypto/dsa, const L2048N224 ParameterSizes
   373  pkg crypto/dsa, const L2048N256 ParameterSizes
   374  pkg crypto/dsa, const L3072N256 ParameterSizes
   375  pkg crypto/dsa, func GenerateKey(*PrivateKey, io.Reader) error
   376  pkg crypto/dsa, func GenerateParameters(*Parameters, io.Reader, ParameterSizes) error
   377  pkg crypto/dsa, func Sign(io.Reader, *PrivateKey, []uint8) (*big.Int, *big.Int, error)
   378  pkg crypto/dsa, func Verify(*PublicKey, []uint8, *big.Int, *big.Int) bool
   379  pkg crypto/dsa, type ParameterSizes int
   380  pkg crypto/dsa, type Parameters struct
   381  pkg crypto/dsa, type Parameters struct, G *big.Int
   382  pkg crypto/dsa, type Parameters struct, P *big.Int
   383  pkg crypto/dsa, type Parameters struct, Q *big.Int
   384  pkg crypto/dsa, type PrivateKey struct
   385  pkg crypto/dsa, type PrivateKey struct, X *big.Int
   386  pkg crypto/dsa, type PrivateKey struct, embedded PublicKey
   387  pkg crypto/dsa, type PublicKey struct
   388  pkg crypto/dsa, type PublicKey struct, Y *big.Int
   389  pkg crypto/dsa, type PublicKey struct, embedded Parameters
   390  pkg crypto/dsa, var ErrInvalidPublicKey error
   391  pkg crypto/ecdsa, func GenerateKey(elliptic.Curve, io.Reader) (*PrivateKey, error)
   392  pkg crypto/ecdsa, func Sign(io.Reader, *PrivateKey, []uint8) (*big.Int, *big.Int, error)
   393  pkg crypto/ecdsa, func Verify(*PublicKey, []uint8, *big.Int, *big.Int) bool
   394  pkg crypto/ecdsa, method (PrivateKey) Add(*big.Int, *big.Int, *big.Int, *big.Int) (*big.Int, *big.Int)
   395  pkg crypto/ecdsa, method (PrivateKey) Double(*big.Int, *big.Int) (*big.Int, *big.Int)
   396  pkg crypto/ecdsa, method (PrivateKey) IsOnCurve(*big.Int, *big.Int) bool
   397  pkg crypto/ecdsa, method (PrivateKey) Params() *elliptic.CurveParams
   398  pkg crypto/ecdsa, method (PrivateKey) ScalarBaseMult([]uint8) (*big.Int, *big.Int)
   399  pkg crypto/ecdsa, method (PrivateKey) ScalarMult(*big.Int, *big.Int, []uint8) (*big.Int, *big.Int)
   400  pkg crypto/ecdsa, method (PublicKey) Add(*big.Int, *big.Int, *big.Int, *big.Int) (*big.Int, *big.Int)
   401  pkg crypto/ecdsa, method (PublicKey) Double(*big.Int, *big.Int) (*big.Int, *big.Int)
   402  pkg crypto/ecdsa, method (PublicKey) IsOnCurve(*big.Int, *big.Int) bool
   403  pkg crypto/ecdsa, method (PublicKey) Params() *elliptic.CurveParams
   404  pkg crypto/ecdsa, method (PublicKey) ScalarBaseMult([]uint8) (*big.Int, *big.Int)
   405  pkg crypto/ecdsa, method (PublicKey) ScalarMult(*big.Int, *big.Int, []uint8) (*big.Int, *big.Int)
   406  pkg crypto/ecdsa, type PrivateKey struct
   407  pkg crypto/ecdsa, type PrivateKey struct, D *big.Int
   408  pkg crypto/ecdsa, type PrivateKey struct, embedded PublicKey
   409  pkg crypto/ecdsa, type PublicKey struct
   410  pkg crypto/ecdsa, type PublicKey struct, X *big.Int
   411  pkg crypto/ecdsa, type PublicKey struct, Y *big.Int
   412  pkg crypto/ecdsa, type PublicKey struct, embedded elliptic.Curve
   413  pkg crypto/elliptic, func GenerateKey(Curve, io.Reader) ([]uint8, *big.Int, *big.Int, error)
   414  pkg crypto/elliptic, func Marshal(Curve, *big.Int, *big.Int) []uint8
   415  pkg crypto/elliptic, func P224() Curve
   416  pkg crypto/elliptic, func P256() Curve
   417  pkg crypto/elliptic, func P384() Curve
   418  pkg crypto/elliptic, func P521() Curve
   419  pkg crypto/elliptic, func Unmarshal(Curve, []uint8) (*big.Int, *big.Int)
   420  pkg crypto/elliptic, method (*CurveParams) Add(*big.Int, *big.Int, *big.Int, *big.Int) (*big.Int, *big.Int)
   421  pkg crypto/elliptic, method (*CurveParams) Double(*big.Int, *big.Int) (*big.Int, *big.Int)
   422  pkg crypto/elliptic, method (*CurveParams) IsOnCurve(*big.Int, *big.Int) bool
   423  pkg crypto/elliptic, method (*CurveParams) Params() *CurveParams
   424  pkg crypto/elliptic, method (*CurveParams) ScalarBaseMult([]uint8) (*big.Int, *big.Int)
   425  pkg crypto/elliptic, method (*CurveParams) ScalarMult(*big.Int, *big.Int, []uint8) (*big.Int, *big.Int)
   426  pkg crypto/elliptic, type Curve interface { Add, Double, IsOnCurve, Params, ScalarBaseMult, ScalarMult }
   427  pkg crypto/elliptic, type Curve interface, Add(*big.Int, *big.Int, *big.Int, *big.Int) (*big.Int, *big.Int)
   428  pkg crypto/elliptic, type Curve interface, Double(*big.Int, *big.Int) (*big.Int, *big.Int)
   429  pkg crypto/elliptic, type Curve interface, IsOnCurve(*big.Int, *big.Int) bool
   430  pkg crypto/elliptic, type Curve interface, Params() *CurveParams
   431  pkg crypto/elliptic, type Curve interface, ScalarBaseMult([]uint8) (*big.Int, *big.Int)
   432  pkg crypto/elliptic, type Curve interface, ScalarMult(*big.Int, *big.Int, []uint8) (*big.Int, *big.Int)
   433  pkg crypto/elliptic, type CurveParams struct
   434  pkg crypto/elliptic, type CurveParams struct, B *big.Int
   435  pkg crypto/elliptic, type CurveParams struct, BitSize int
   436  pkg crypto/elliptic, type CurveParams struct, Gx *big.Int
   437  pkg crypto/elliptic, type CurveParams struct, Gy *big.Int
   438  pkg crypto/elliptic, type CurveParams struct, N *big.Int
   439  pkg crypto/elliptic, type CurveParams struct, P *big.Int
   440  pkg crypto/hmac, func New(func() hash.Hash, []uint8) hash.Hash
   441  pkg crypto/md5, const BlockSize ideal-int
   442  pkg crypto/md5, const Size ideal-int
   443  pkg crypto/md5, func New() hash.Hash
   444  pkg crypto/rand, func Int(io.Reader, *big.Int) (*big.Int, error)
   445  pkg crypto/rand, func Prime(io.Reader, int) (*big.Int, error)
   446  pkg crypto/rand, func Read([]uint8) (int, error)
   447  pkg crypto/rand, var Reader io.Reader
   448  pkg crypto/rc4, func NewCipher([]uint8) (*Cipher, error)
   449  pkg crypto/rc4, method (*Cipher) Reset()
   450  pkg crypto/rc4, method (*Cipher) XORKeyStream([]uint8, []uint8)
   451  pkg crypto/rc4, method (KeySizeError) Error() string
   452  pkg crypto/rc4, type Cipher struct
   453  pkg crypto/rc4, type KeySizeError int
   454  pkg crypto/rsa, func DecryptOAEP(hash.Hash, io.Reader, *PrivateKey, []uint8, []uint8) ([]uint8, error)
   455  pkg crypto/rsa, func DecryptPKCS1v15(io.Reader, *PrivateKey, []uint8) ([]uint8, error)
   456  pkg crypto/rsa, func DecryptPKCS1v15SessionKey(io.Reader, *PrivateKey, []uint8, []uint8) error
   457  pkg crypto/rsa, func EncryptOAEP(hash.Hash, io.Reader, *PublicKey, []uint8, []uint8) ([]uint8, error)
   458  pkg crypto/rsa, func EncryptPKCS1v15(io.Reader, *PublicKey, []uint8) ([]uint8, error)
   459  pkg crypto/rsa, func GenerateKey(io.Reader, int) (*PrivateKey, error)
   460  pkg crypto/rsa, func GenerateMultiPrimeKey(io.Reader, int, int) (*PrivateKey, error)
   461  pkg crypto/rsa, func SignPKCS1v15(io.Reader, *PrivateKey, crypto.Hash, []uint8) ([]uint8, error)
   462  pkg crypto/rsa, func VerifyPKCS1v15(*PublicKey, crypto.Hash, []uint8, []uint8) error
   463  pkg crypto/rsa, method (*PrivateKey) Precompute()
   464  pkg crypto/rsa, method (*PrivateKey) Validate() error
   465  pkg crypto/rsa, type CRTValue struct
   466  pkg crypto/rsa, type CRTValue struct, Coeff *big.Int
   467  pkg crypto/rsa, type CRTValue struct, Exp *big.Int
   468  pkg crypto/rsa, type CRTValue struct, R *big.Int
   469  pkg crypto/rsa, type PrecomputedValues struct
   470  pkg crypto/rsa, type PrecomputedValues struct, CRTValues []CRTValue
   471  pkg crypto/rsa, type PrecomputedValues struct, Dp *big.Int
   472  pkg crypto/rsa, type PrecomputedValues struct, Dq *big.Int
   473  pkg crypto/rsa, type PrecomputedValues struct, Qinv *big.Int
   474  pkg crypto/rsa, type PrivateKey struct
   475  pkg crypto/rsa, type PrivateKey struct, D *big.Int
   476  pkg crypto/rsa, type PrivateKey struct, Precomputed PrecomputedValues
   477  pkg crypto/rsa, type PrivateKey struct, Primes []*big.Int
   478  pkg crypto/rsa, type PrivateKey struct, embedded PublicKey
   479  pkg crypto/rsa, type PublicKey struct
   480  pkg crypto/rsa, type PublicKey struct, E int
   481  pkg crypto/rsa, type PublicKey struct, N *big.Int
   482  pkg crypto/rsa, var ErrDecryption error
   483  pkg crypto/rsa, var ErrMessageTooLong error
   484  pkg crypto/rsa, var ErrVerification error
   485  pkg crypto/sha1, const BlockSize ideal-int
   486  pkg crypto/sha1, const Size ideal-int
   487  pkg crypto/sha1, func New() hash.Hash
   488  pkg crypto/sha256, const BlockSize ideal-int
   489  pkg crypto/sha256, const Size ideal-int
   490  pkg crypto/sha256, const Size224 ideal-int
   491  pkg crypto/sha256, func New() hash.Hash
   492  pkg crypto/sha256, func New224() hash.Hash
   493  pkg crypto/sha512, const BlockSize ideal-int
   494  pkg crypto/sha512, const Size ideal-int
   495  pkg crypto/sha512, const Size384 ideal-int
   496  pkg crypto/sha512, func New() hash.Hash
   497  pkg crypto/sha512, func New384() hash.Hash
   498  pkg crypto/subtle, func ConstantTimeByteEq(uint8, uint8) int
   499  pkg crypto/subtle, func ConstantTimeCompare([]uint8, []uint8) int
   500  pkg crypto/subtle, func ConstantTimeCopy(int, []uint8, []uint8)
   501  pkg crypto/subtle, func ConstantTimeEq(int32, int32) int
   502  pkg crypto/subtle, func ConstantTimeSelect(int, int, int) int
   503  pkg crypto/tls, const NoClientCert ClientAuthType
   504  pkg crypto/tls, const RequestClientCert ClientAuthType
   505  pkg crypto/tls, const RequireAndVerifyClientCert ClientAuthType
   506  pkg crypto/tls, const RequireAnyClientCert ClientAuthType
   507  pkg crypto/tls, const TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA uint16
   508  pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA uint16
   509  pkg crypto/tls, const TLS_ECDHE_RSA_WITH_RC4_128_SHA uint16
   510  pkg crypto/tls, const TLS_RSA_WITH_3DES_EDE_CBC_SHA uint16
   511  pkg crypto/tls, const TLS_RSA_WITH_AES_128_CBC_SHA uint16
   512  pkg crypto/tls, const TLS_RSA_WITH_RC4_128_SHA uint16
   513  pkg crypto/tls, const VerifyClientCertIfGiven ClientAuthType
   514  pkg crypto/tls, func Client(net.Conn, *Config) *Conn
   515  pkg crypto/tls, func Dial(string, string, *Config) (*Conn, error)
   516  pkg crypto/tls, func Listen(string, string, *Config) (net.Listener, error)
   517  pkg crypto/tls, func LoadX509KeyPair(string, string) (Certificate, error)
   518  pkg crypto/tls, func NewListener(net.Listener, *Config) net.Listener
   519  pkg crypto/tls, func Server(net.Conn, *Config) *Conn
   520  pkg crypto/tls, func X509KeyPair([]uint8, []uint8) (Certificate, error)
   521  pkg crypto/tls, method (*Config) BuildNameToCertificate()
   522  pkg crypto/tls, method (*Conn) Close() error
   523  pkg crypto/tls, method (*Conn) ConnectionState() ConnectionState
   524  pkg crypto/tls, method (*Conn) Handshake() error
   525  pkg crypto/tls, method (*Conn) LocalAddr() net.Addr
   526  pkg crypto/tls, method (*Conn) OCSPResponse() []uint8
   527  pkg crypto/tls, method (*Conn) Read([]uint8) (int, error)
   528  pkg crypto/tls, method (*Conn) RemoteAddr() net.Addr
   529  pkg crypto/tls, method (*Conn) SetDeadline(time.Time) error
   530  pkg crypto/tls, method (*Conn) SetReadDeadline(time.Time) error
   531  pkg crypto/tls, method (*Conn) SetWriteDeadline(time.Time) error
   532  pkg crypto/tls, method (*Conn) VerifyHostname(string) error
   533  pkg crypto/tls, method (*Conn) Write([]uint8) (int, error)
   534  pkg crypto/tls, type Certificate struct
   535  pkg crypto/tls, type Certificate struct, Certificate [][]uint8
   536  pkg crypto/tls, type Certificate struct, Leaf *x509.Certificate
   537  pkg crypto/tls, type Certificate struct, OCSPStaple []uint8
   538  pkg crypto/tls, type Certificate struct, PrivateKey crypto.PrivateKey
   539  pkg crypto/tls, type ClientAuthType int
   540  pkg crypto/tls, type Config struct
   541  pkg crypto/tls, type Config struct, Certificates []Certificate
   542  pkg crypto/tls, type Config struct, CipherSuites []uint16
   543  pkg crypto/tls, type Config struct, ClientAuth ClientAuthType
   544  pkg crypto/tls, type Config struct, ClientCAs *x509.CertPool
   545  pkg crypto/tls, type Config struct, InsecureSkipVerify bool
   546  pkg crypto/tls, type Config struct, NameToCertificate map[string]*Certificate
   547  pkg crypto/tls, type Config struct, NextProtos []string
   548  pkg crypto/tls, type Config struct, Rand io.Reader
   549  pkg crypto/tls, type Config struct, RootCAs *x509.CertPool
   550  pkg crypto/tls, type Config struct, ServerName string
   551  pkg crypto/tls, type Config struct, Time func() time.Time
   552  pkg crypto/tls, type Conn struct
   553  pkg crypto/tls, type ConnectionState struct
   554  pkg crypto/tls, type ConnectionState struct, CipherSuite uint16
   555  pkg crypto/tls, type ConnectionState struct, HandshakeComplete bool
   556  pkg crypto/tls, type ConnectionState struct, NegotiatedProtocol string
   557  pkg crypto/tls, type ConnectionState struct, NegotiatedProtocolIsMutual bool
   558  pkg crypto/tls, type ConnectionState struct, PeerCertificates []*x509.Certificate
   559  pkg crypto/tls, type ConnectionState struct, ServerName string
   560  pkg crypto/tls, type ConnectionState struct, VerifiedChains [][]*x509.Certificate
   561  pkg crypto/x509, const CANotAuthorizedForThisName InvalidReason
   562  pkg crypto/x509, const DSA PublicKeyAlgorithm
   563  pkg crypto/x509, const DSAWithSHA1 SignatureAlgorithm
   564  pkg crypto/x509, const DSAWithSHA256 SignatureAlgorithm
   565  pkg crypto/x509, const Expired InvalidReason
   566  pkg crypto/x509, const ExtKeyUsageAny ExtKeyUsage
   567  pkg crypto/x509, const ExtKeyUsageClientAuth ExtKeyUsage
   568  pkg crypto/x509, const ExtKeyUsageCodeSigning ExtKeyUsage
   569  pkg crypto/x509, const ExtKeyUsageEmailProtection ExtKeyUsage
   570  pkg crypto/x509, const ExtKeyUsageOCSPSigning ExtKeyUsage
   571  pkg crypto/x509, const ExtKeyUsageServerAuth ExtKeyUsage
   572  pkg crypto/x509, const ExtKeyUsageTimeStamping ExtKeyUsage
   573  pkg crypto/x509, const KeyUsageCRLSign KeyUsage
   574  pkg crypto/x509, const KeyUsageCertSign KeyUsage
   575  pkg crypto/x509, const KeyUsageContentCommitment KeyUsage
   576  pkg crypto/x509, const KeyUsageDataEncipherment KeyUsage
   577  pkg crypto/x509, const KeyUsageDecipherOnly KeyUsage
   578  pkg crypto/x509, const KeyUsageDigitalSignature KeyUsage
   579  pkg crypto/x509, const KeyUsageEncipherOnly KeyUsage
   580  pkg crypto/x509, const KeyUsageKeyAgreement KeyUsage
   581  pkg crypto/x509, const KeyUsageKeyEncipherment KeyUsage
   582  pkg crypto/x509, const MD2WithRSA SignatureAlgorithm
   583  pkg crypto/x509, const MD5WithRSA SignatureAlgorithm
   584  pkg crypto/x509, const NotAuthorizedToSign InvalidReason
   585  pkg crypto/x509, const RSA PublicKeyAlgorithm
   586  pkg crypto/x509, const SHA1WithRSA SignatureAlgorithm
   587  pkg crypto/x509, const SHA256WithRSA SignatureAlgorithm
   588  pkg crypto/x509, const SHA384WithRSA SignatureAlgorithm
   589  pkg crypto/x509, const SHA512WithRSA SignatureAlgorithm
   590  pkg crypto/x509, const TooManyIntermediates InvalidReason
   591  pkg crypto/x509, const UnknownPublicKeyAlgorithm PublicKeyAlgorithm
   592  pkg crypto/x509, const UnknownSignatureAlgorithm SignatureAlgorithm
   593  pkg crypto/x509, func CreateCertificate(io.Reader, *Certificate, *Certificate, interface{}, interface{}) ([]uint8, error)
   594  pkg crypto/x509, func MarshalPKCS1PrivateKey(*rsa.PrivateKey) []uint8
   595  pkg crypto/x509, func MarshalPKIXPublicKey(interface{}) ([]uint8, error)
   596  pkg crypto/x509, func NewCertPool() *CertPool
   597  pkg crypto/x509, func ParseCRL([]uint8) (*pkix.CertificateList, error)
   598  pkg crypto/x509, func ParseCertificate([]uint8) (*Certificate, error)
   599  pkg crypto/x509, func ParseCertificates([]uint8) ([]*Certificate, error)
   600  pkg crypto/x509, func ParseDERCRL([]uint8) (*pkix.CertificateList, error)
   601  pkg crypto/x509, func ParsePKCS1PrivateKey([]uint8) (*rsa.PrivateKey, error)
   602  pkg crypto/x509, func ParsePKCS8PrivateKey([]uint8) (interface{}, error)
   603  pkg crypto/x509, func ParsePKIXPublicKey([]uint8) (interface{}, error)
   604  pkg crypto/x509, method (*CertPool) AddCert(*Certificate)
   605  pkg crypto/x509, method (*CertPool) AppendCertsFromPEM([]uint8) bool
   606  pkg crypto/x509, method (*CertPool) Subjects() [][]uint8
   607  pkg crypto/x509, method (*Certificate) CheckCRLSignature(*pkix.CertificateList) error
   608  pkg crypto/x509, method (*Certificate) CheckSignature(SignatureAlgorithm, []uint8, []uint8) error
   609  pkg crypto/x509, method (*Certificate) CheckSignatureFrom(*Certificate) error
   610  pkg crypto/x509, method (*Certificate) CreateCRL(io.Reader, interface{}, []pkix.RevokedCertificate, time.Time, time.Time) ([]uint8, error)
   611  pkg crypto/x509, method (*Certificate) Equal(*Certificate) bool
   612  pkg crypto/x509, method (*Certificate) Verify(VerifyOptions) ([][]*Certificate, error)
   613  pkg crypto/x509, method (*Certificate) VerifyHostname(string) error
   614  pkg crypto/x509, method (CertificateInvalidError) Error() string
   615  pkg crypto/x509, method (ConstraintViolationError) Error() string
   616  pkg crypto/x509, method (HostnameError) Error() string
   617  pkg crypto/x509, method (UnhandledCriticalExtension) Error() string
   618  pkg crypto/x509, method (UnknownAuthorityError) Error() string
   619  pkg crypto/x509, type CertPool struct
   620  pkg crypto/x509, type Certificate struct
   621  pkg crypto/x509, type Certificate struct, AuthorityKeyId []uint8
   622  pkg crypto/x509, type Certificate struct, BasicConstraintsValid bool
   623  pkg crypto/x509, type Certificate struct, DNSNames []string
   624  pkg crypto/x509, type Certificate struct, EmailAddresses []string
   625  pkg crypto/x509, type Certificate struct, ExtKeyUsage []ExtKeyUsage
   626  pkg crypto/x509, type Certificate struct, IsCA bool
   627  pkg crypto/x509, type Certificate struct, Issuer pkix.Name
   628  pkg crypto/x509, type Certificate struct, KeyUsage KeyUsage
   629  pkg crypto/x509, type Certificate struct, MaxPathLen int
   630  pkg crypto/x509, type Certificate struct, NotAfter time.Time
   631  pkg crypto/x509, type Certificate struct, NotBefore time.Time
   632  pkg crypto/x509, type Certificate struct, PermittedDNSDomains []string
   633  pkg crypto/x509, type Certificate struct, PermittedDNSDomainsCritical bool
   634  pkg crypto/x509, type Certificate struct, PolicyIdentifiers []asn1.ObjectIdentifier
   635  pkg crypto/x509, type Certificate struct, PublicKey interface{}
   636  pkg crypto/x509, type Certificate struct, PublicKeyAlgorithm PublicKeyAlgorithm
   637  pkg crypto/x509, type Certificate struct, Raw []uint8
   638  pkg crypto/x509, type Certificate struct, RawIssuer []uint8
   639  pkg crypto/x509, type Certificate struct, RawSubject []uint8
   640  pkg crypto/x509, type Certificate struct, RawSubjectPublicKeyInfo []uint8
   641  pkg crypto/x509, type Certificate struct, RawTBSCertificate []uint8
   642  pkg crypto/x509, type Certificate struct, SerialNumber *big.Int
   643  pkg crypto/x509, type Certificate struct, Signature []uint8
   644  pkg crypto/x509, type Certificate struct, SignatureAlgorithm SignatureAlgorithm
   645  pkg crypto/x509, type Certificate struct, Subject pkix.Name
   646  pkg crypto/x509, type Certificate struct, SubjectKeyId []uint8
   647  pkg crypto/x509, type Certificate struct, UnknownExtKeyUsage []asn1.ObjectIdentifier
   648  pkg crypto/x509, type Certificate struct, Version int
   649  pkg crypto/x509, type CertificateInvalidError struct
   650  pkg crypto/x509, type CertificateInvalidError struct, Cert *Certificate
   651  pkg crypto/x509, type CertificateInvalidError struct, Reason InvalidReason
   652  pkg crypto/x509, type ConstraintViolationError struct
   653  pkg crypto/x509, type ExtKeyUsage int
   654  pkg crypto/x509, type HostnameError struct
   655  pkg crypto/x509, type HostnameError struct, Certificate *Certificate
   656  pkg crypto/x509, type HostnameError struct, Host string
   657  pkg crypto/x509, type InvalidReason int
   658  pkg crypto/x509, type KeyUsage int
   659  pkg crypto/x509, type PublicKeyAlgorithm int
   660  pkg crypto/x509, type SignatureAlgorithm int
   661  pkg crypto/x509, type UnhandledCriticalExtension struct
   662  pkg crypto/x509, type UnknownAuthorityError struct
   663  pkg crypto/x509, type VerifyOptions struct
   664  pkg crypto/x509, type VerifyOptions struct, CurrentTime time.Time
   665  pkg crypto/x509, type VerifyOptions struct, DNSName string
   666  pkg crypto/x509, type VerifyOptions struct, Intermediates *CertPool
   667  pkg crypto/x509, type VerifyOptions struct, Roots *CertPool
   668  pkg crypto/x509, var ErrUnsupportedAlgorithm error
   669  pkg crypto/x509/pkix, method (*CertificateList) HasExpired(time.Time) bool
   670  pkg crypto/x509/pkix, method (*Name) FillFromRDNSequence(*RDNSequence)
   671  pkg crypto/x509/pkix, method (Name) ToRDNSequence() RDNSequence
   672  pkg crypto/x509/pkix, type AlgorithmIdentifier struct
   673  pkg crypto/x509/pkix, type AlgorithmIdentifier struct, Algorithm asn1.ObjectIdentifier
   674  pkg crypto/x509/pkix, type AlgorithmIdentifier struct, Parameters asn1.RawValue
   675  pkg crypto/x509/pkix, type AttributeTypeAndValue struct
   676  pkg crypto/x509/pkix, type AttributeTypeAndValue struct, Type asn1.ObjectIdentifier
   677  pkg crypto/x509/pkix, type AttributeTypeAndValue struct, Value interface{}
   678  pkg crypto/x509/pkix, type CertificateList struct
   679  pkg crypto/x509/pkix, type CertificateList struct, SignatureAlgorithm AlgorithmIdentifier
   680  pkg crypto/x509/pkix, type CertificateList struct, SignatureValue asn1.BitString
   681  pkg crypto/x509/pkix, type CertificateList struct, TBSCertList TBSCertificateList
   682  pkg crypto/x509/pkix, type Extension struct
   683  pkg crypto/x509/pkix, type Extension struct, Critical bool
   684  pkg crypto/x509/pkix, type Extension struct, Id asn1.ObjectIdentifier
   685  pkg crypto/x509/pkix, type Extension struct, Value []uint8
   686  pkg crypto/x509/pkix, type Name struct
   687  pkg crypto/x509/pkix, type Name struct, CommonName string
   688  pkg crypto/x509/pkix, type Name struct, Country []string
   689  pkg crypto/x509/pkix, type Name struct, Locality []string
   690  pkg crypto/x509/pkix, type Name struct, Names []AttributeTypeAndValue
   691  pkg crypto/x509/pkix, type Name struct, Organization []string
   692  pkg crypto/x509/pkix, type Name struct, OrganizationalUnit []string
   693  pkg crypto/x509/pkix, type Name struct, PostalCode []string
   694  pkg crypto/x509/pkix, type Name struct, Province []string
   695  pkg crypto/x509/pkix, type Name struct, SerialNumber string
   696  pkg crypto/x509/pkix, type Name struct, StreetAddress []string
   697  pkg crypto/x509/pkix, type RDNSequence []RelativeDistinguishedNameSET
   698  pkg crypto/x509/pkix, type RelativeDistinguishedNameSET []AttributeTypeAndValue
   699  pkg crypto/x509/pkix, type RevokedCertificate struct
   700  pkg crypto/x509/pkix, type RevokedCertificate struct, Extensions []Extension
   701  pkg crypto/x509/pkix, type RevokedCertificate struct, RevocationTime time.Time
   702  pkg crypto/x509/pkix, type RevokedCertificate struct, SerialNumber *big.Int
   703  pkg crypto/x509/pkix, type TBSCertificateList struct
   704  pkg crypto/x509/pkix, type TBSCertificateList struct, Extensions []Extension
   705  pkg crypto/x509/pkix, type TBSCertificateList struct, Issuer RDNSequence
   706  pkg crypto/x509/pkix, type TBSCertificateList struct, NextUpdate time.Time
   707  pkg crypto/x509/pkix, type TBSCertificateList struct, Raw asn1.RawContent
   708  pkg crypto/x509/pkix, type TBSCertificateList struct, RevokedCertificates []RevokedCertificate
   709  pkg crypto/x509/pkix, type TBSCertificateList struct, Signature AlgorithmIdentifier
   710  pkg crypto/x509/pkix, type TBSCertificateList struct, ThisUpdate time.Time
   711  pkg crypto/x509/pkix, type TBSCertificateList struct, Version int
   712  pkg database/sql, func Open(string, string) (*DB, error)
   713  pkg database/sql, func Register(string, driver.Driver)
   714  pkg database/sql, method (*DB) Begin() (*Tx, error)
   715  pkg database/sql, method (*DB) Close() error
   716  pkg database/sql, method (*DB) Driver() driver.Driver
   717  pkg database/sql, method (*DB) Exec(string, ...interface{}) (Result, error)
   718  pkg database/sql, method (*DB) Prepare(string) (*Stmt, error)
   719  pkg database/sql, method (*DB) Query(string, ...interface{}) (*Rows, error)
   720  pkg database/sql, method (*DB) QueryRow(string, ...interface{}) *Row
   721  pkg database/sql, method (*NullBool) Scan(interface{}) error
   722  pkg database/sql, method (*NullFloat64) Scan(interface{}) error
   723  pkg database/sql, method (*NullInt64) Scan(interface{}) error
   724  pkg database/sql, method (*NullString) Scan(interface{}) error
   725  pkg database/sql, method (*Row) Scan(...interface{}) error
   726  pkg database/sql, method (*Rows) Close() error
   727  pkg database/sql, method (*Rows) Columns() ([]string, error)
   728  pkg database/sql, method (*Rows) Err() error
   729  pkg database/sql, method (*Rows) Next() bool
   730  pkg database/sql, method (*Rows) Scan(...interface{}) error
   731  pkg database/sql, method (*Stmt) Close() error
   732  pkg database/sql, method (*Stmt) Exec(...interface{}) (Result, error)
   733  pkg database/sql, method (*Stmt) Query(...interface{}) (*Rows, error)
   734  pkg database/sql, method (*Stmt) QueryRow(...interface{}) *Row
   735  pkg database/sql, method (*Tx) Commit() error
   736  pkg database/sql, method (*Tx) Exec(string, ...interface{}) (Result, error)
   737  pkg database/sql, method (*Tx) Prepare(string) (*Stmt, error)
   738  pkg database/sql, method (*Tx) Query(string, ...interface{}) (*Rows, error)
   739  pkg database/sql, method (*Tx) QueryRow(string, ...interface{}) *Row
   740  pkg database/sql, method (*Tx) Rollback() error
   741  pkg database/sql, method (*Tx) Stmt(*Stmt) *Stmt
   742  pkg database/sql, method (NullBool) Value() (driver.Value, error)
   743  pkg database/sql, method (NullFloat64) Value() (driver.Value, error)
   744  pkg database/sql, method (NullInt64) Value() (driver.Value, error)
   745  pkg database/sql, method (NullString) Value() (driver.Value, error)
   746  pkg database/sql, type DB struct
   747  pkg database/sql, type NullBool struct
   748  pkg database/sql, type NullBool struct, Bool bool
   749  pkg database/sql, type NullBool struct, Valid bool
   750  pkg database/sql, type NullFloat64 struct
   751  pkg database/sql, type NullFloat64 struct, Float64 float64
   752  pkg database/sql, type NullFloat64 struct, Valid bool
   753  pkg database/sql, type NullInt64 struct
   754  pkg database/sql, type NullInt64 struct, Int64 int64
   755  pkg database/sql, type NullInt64 struct, Valid bool
   756  pkg database/sql, type NullString struct
   757  pkg database/sql, type NullString struct, String string
   758  pkg database/sql, type NullString struct, Valid bool
   759  pkg database/sql, type RawBytes []uint8
   760  pkg database/sql, type Result interface { LastInsertId, RowsAffected }
   761  pkg database/sql, type Result interface, LastInsertId() (int64, error)
   762  pkg database/sql, type Result interface, RowsAffected() (int64, error)
   763  pkg database/sql, type Row struct
   764  pkg database/sql, type Rows struct
   765  pkg database/sql, type Scanner interface { Scan }
   766  pkg database/sql, type Scanner interface, Scan(interface{}) error
   767  pkg database/sql, type Stmt struct
   768  pkg database/sql, type Tx struct
   769  pkg database/sql, var ErrNoRows error
   770  pkg database/sql, var ErrTxDone error
   771  pkg database/sql/driver, func IsScanValue(interface{}) bool
   772  pkg database/sql/driver, func IsValue(interface{}) bool
   773  pkg database/sql/driver, method (NotNull) ConvertValue(interface{}) (Value, error)
   774  pkg database/sql/driver, method (Null) ConvertValue(interface{}) (Value, error)
   775  pkg database/sql/driver, method (RowsAffected) LastInsertId() (int64, error)
   776  pkg database/sql/driver, method (RowsAffected) RowsAffected() (int64, error)
   777  pkg database/sql/driver, type ColumnConverter interface { ColumnConverter }
   778  pkg database/sql/driver, type ColumnConverter interface, ColumnConverter(int) ValueConverter
   779  pkg database/sql/driver, type Conn interface { Begin, Close, Prepare }
   780  pkg database/sql/driver, type Conn interface, Begin() (Tx, error)
   781  pkg database/sql/driver, type Conn interface, Close() error
   782  pkg database/sql/driver, type Conn interface, Prepare(string) (Stmt, error)
   783  pkg database/sql/driver, type Driver interface { Open }
   784  pkg database/sql/driver, type Driver interface, Open(string) (Conn, error)
   785  pkg database/sql/driver, type Execer interface { Exec }
   786  pkg database/sql/driver, type Execer interface, Exec(string, []Value) (Result, error)
   787  pkg database/sql/driver, type NotNull struct
   788  pkg database/sql/driver, type NotNull struct, Converter ValueConverter
   789  pkg database/sql/driver, type Null struct
   790  pkg database/sql/driver, type Null struct, Converter ValueConverter
   791  pkg database/sql/driver, type Result interface { LastInsertId, RowsAffected }
   792  pkg database/sql/driver, type Result interface, LastInsertId() (int64, error)
   793  pkg database/sql/driver, type Result interface, RowsAffected() (int64, error)
   794  pkg database/sql/driver, type Rows interface { Close, Columns, Next }
   795  pkg database/sql/driver, type Rows interface, Close() error
   796  pkg database/sql/driver, type Rows interface, Columns() []string
   797  pkg database/sql/driver, type Rows interface, Next([]Value) error
   798  pkg database/sql/driver, type RowsAffected int64
   799  pkg database/sql/driver, type Stmt interface { Close, Exec, NumInput, Query }
   800  pkg database/sql/driver, type Stmt interface, Close() error
   801  pkg database/sql/driver, type Stmt interface, Exec([]Value) (Result, error)
   802  pkg database/sql/driver, type Stmt interface, NumInput() int
   803  pkg database/sql/driver, type Stmt interface, Query([]Value) (Rows, error)
   804  pkg database/sql/driver, type Tx interface { Commit, Rollback }
   805  pkg database/sql/driver, type Tx interface, Commit() error
   806  pkg database/sql/driver, type Tx interface, Rollback() error
   807  pkg database/sql/driver, type Value interface {}
   808  pkg database/sql/driver, type ValueConverter interface { ConvertValue }
   809  pkg database/sql/driver, type ValueConverter interface, ConvertValue(interface{}) (Value, error)
   810  pkg database/sql/driver, type Valuer interface { Value }
   811  pkg database/sql/driver, type Valuer interface, Value() (Value, error)
   812  pkg database/sql/driver, var Bool boolType
   813  pkg database/sql/driver, var DefaultParameterConverter defaultConverter
   814  pkg database/sql/driver, var ErrBadConn error
   815  pkg database/sql/driver, var ErrSkip error
   816  pkg database/sql/driver, var Int32 int32Type
   817  pkg database/sql/driver, var ResultNoRows noRows
   818  pkg database/sql/driver, var String stringType
   819  pkg debug/dwarf, const AttrAbstractOrigin Attr
   820  pkg debug/dwarf, const AttrAccessibility Attr
   821  pkg debug/dwarf, const AttrAddrClass Attr
   822  pkg debug/dwarf, const AttrAllocated Attr
   823  pkg debug/dwarf, const AttrArtificial Attr
   824  pkg debug/dwarf, const AttrAssociated Attr
   825  pkg debug/dwarf, const AttrBaseTypes Attr
   826  pkg debug/dwarf, const AttrBitOffset Attr
   827  pkg debug/dwarf, const AttrBitSize Attr
   828  pkg debug/dwarf, const AttrByteSize Attr
   829  pkg debug/dwarf, const AttrCallColumn Attr
   830  pkg debug/dwarf, const AttrCallFile Attr
   831  pkg debug/dwarf, const AttrCallLine Attr
   832  pkg debug/dwarf, const AttrCalling Attr
   833  pkg debug/dwarf, const AttrCommonRef Attr
   834  pkg debug/dwarf, const AttrCompDir Attr
   835  pkg debug/dwarf, const AttrConstValue Attr
   836  pkg debug/dwarf, const AttrContainingType Attr
   837  pkg debug/dwarf, const AttrCount Attr
   838  pkg debug/dwarf, const AttrDataLocation Attr
   839  pkg debug/dwarf, const AttrDataMemberLoc Attr
   840  pkg debug/dwarf, const AttrDeclColumn Attr
   841  pkg debug/dwarf, const AttrDeclFile Attr
   842  pkg debug/dwarf, const AttrDeclLine Attr
   843  pkg debug/dwarf, const AttrDeclaration Attr
   844  pkg debug/dwarf, const AttrDefaultValue Attr
   845  pkg debug/dwarf, const AttrDescription Attr
   846  pkg debug/dwarf, const AttrDiscr Attr
   847  pkg debug/dwarf, const AttrDiscrList Attr
   848  pkg debug/dwarf, const AttrDiscrValue Attr
   849  pkg debug/dwarf, const AttrEncoding Attr
   850  pkg debug/dwarf, const AttrEntrypc Attr
   851  pkg debug/dwarf, const AttrExtension Attr
   852  pkg debug/dwarf, const AttrExternal Attr
   853  pkg debug/dwarf, const AttrFrameBase Attr
   854  pkg debug/dwarf, const AttrFriend Attr
   855  pkg debug/dwarf, const AttrHighpc Attr
   856  pkg debug/dwarf, const AttrIdentifierCase Attr
   857  pkg debug/dwarf, const AttrImport Attr
   858  pkg debug/dwarf, const AttrInline Attr
   859  pkg debug/dwarf, const AttrIsOptional Attr
   860  pkg debug/dwarf, const AttrLanguage Attr
   861  pkg debug/dwarf, const AttrLocation Attr
   862  pkg debug/dwarf, const AttrLowerBound Attr
   863  pkg debug/dwarf, const AttrLowpc Attr
   864  pkg debug/dwarf, const AttrMacroInfo Attr
   865  pkg debug/dwarf, const AttrName Attr
   866  pkg debug/dwarf, const AttrNamelistItem Attr
   867  pkg debug/dwarf, const AttrOrdering Attr
   868  pkg debug/dwarf, const AttrPriority Attr
   869  pkg debug/dwarf, const AttrProducer Attr
   870  pkg debug/dwarf, const AttrPrototyped Attr
   871  pkg debug/dwarf, const AttrRanges Attr
   872  pkg debug/dwarf, const AttrReturnAddr Attr
   873  pkg debug/dwarf, const AttrSegment Attr
   874  pkg debug/dwarf, const AttrSibling Attr
   875  pkg debug/dwarf, const AttrSpecification Attr
   876  pkg debug/dwarf, const AttrStartScope Attr
   877  pkg debug/dwarf, const AttrStaticLink Attr
   878  pkg debug/dwarf, const AttrStmtList Attr
   879  pkg debug/dwarf, const AttrStride Attr
   880  pkg debug/dwarf, const AttrStrideSize Attr
   881  pkg debug/dwarf, const AttrStringLength Attr
   882  pkg debug/dwarf, const AttrTrampoline Attr
   883  pkg debug/dwarf, const AttrType Attr
   884  pkg debug/dwarf, const AttrUpperBound Attr
   885  pkg debug/dwarf, const AttrUseLocation Attr
   886  pkg debug/dwarf, const AttrUseUTF8 Attr
   887  pkg debug/dwarf, const AttrVarParam Attr
   888  pkg debug/dwarf, const AttrVirtuality Attr
   889  pkg debug/dwarf, const AttrVisibility Attr
   890  pkg debug/dwarf, const AttrVtableElemLoc Attr
   891  pkg debug/dwarf, const TagAccessDeclaration Tag
   892  pkg debug/dwarf, const TagArrayType Tag
   893  pkg debug/dwarf, const TagBaseType Tag
   894  pkg debug/dwarf, const TagCatchDwarfBlock Tag
   895  pkg debug/dwarf, const TagClassType Tag
   896  pkg debug/dwarf, const TagCommonDwarfBlock Tag
   897  pkg debug/dwarf, const TagCommonInclusion Tag
   898  pkg debug/dwarf, const TagCompileUnit Tag
   899  pkg debug/dwarf, const TagConstType Tag
   900  pkg debug/dwarf, const TagConstant Tag
   901  pkg debug/dwarf, const TagDwarfProcedure Tag
   902  pkg debug/dwarf, const TagEntryPoint Tag
   903  pkg debug/dwarf, const TagEnumerationType Tag
   904  pkg debug/dwarf, const TagEnumerator Tag
   905  pkg debug/dwarf, const TagFileType Tag
   906  pkg debug/dwarf, const TagFormalParameter Tag
   907  pkg debug/dwarf, const TagFriend Tag
   908  pkg debug/dwarf, const TagImportedDeclaration Tag
   909  pkg debug/dwarf, const TagImportedModule Tag
   910  pkg debug/dwarf, const TagImportedUnit Tag
   911  pkg debug/dwarf, const TagInheritance Tag
   912  pkg debug/dwarf, const TagInlinedSubroutine Tag
   913  pkg debug/dwarf, const TagInterfaceType Tag
   914  pkg debug/dwarf, const TagLabel Tag
   915  pkg debug/dwarf, const TagLexDwarfBlock Tag
   916  pkg debug/dwarf, const TagMember Tag
   917  pkg debug/dwarf, const TagModule Tag
   918  pkg debug/dwarf, const TagMutableType Tag
   919  pkg debug/dwarf, const TagNamelist Tag
   920  pkg debug/dwarf, const TagNamelistItem Tag
   921  pkg debug/dwarf, const TagNamespace Tag
   922  pkg debug/dwarf, const TagPackedType Tag
   923  pkg debug/dwarf, const TagPartialUnit Tag
   924  pkg debug/dwarf, const TagPointerType Tag
   925  pkg debug/dwarf, const TagPtrToMemberType Tag
   926  pkg debug/dwarf, const TagReferenceType Tag
   927  pkg debug/dwarf, const TagRestrictType Tag
   928  pkg debug/dwarf, const TagSetType Tag
   929  pkg debug/dwarf, const TagStringType Tag
   930  pkg debug/dwarf, const TagStructType Tag
   931  pkg debug/dwarf, const TagSubprogram Tag
   932  pkg debug/dwarf, const TagSubrangeType Tag
   933  pkg debug/dwarf, const TagSubroutineType Tag
   934  pkg debug/dwarf, const TagTemplateTypeParameter Tag
   935  pkg debug/dwarf, const TagTemplateValueParameter Tag
   936  pkg debug/dwarf, const TagThrownType Tag
   937  pkg debug/dwarf, const TagTryDwarfBlock Tag
   938  pkg debug/dwarf, const TagTypedef Tag
   939  pkg debug/dwarf, const TagUnionType Tag
   940  pkg debug/dwarf, const TagUnspecifiedParameters Tag
   941  pkg debug/dwarf, const TagUnspecifiedType Tag
   942  pkg debug/dwarf, const TagVariable Tag
   943  pkg debug/dwarf, const TagVariant Tag
   944  pkg debug/dwarf, const TagVariantPart Tag
   945  pkg debug/dwarf, const TagVolatileType Tag
   946  pkg debug/dwarf, const TagWithStmt Tag
   947  pkg debug/dwarf, func New([]uint8, []uint8, []uint8, []uint8, []uint8, []uint8, []uint8, []uint8) (*Data, error)
   948  pkg debug/dwarf, method (*AddrType) Basic() *BasicType
   949  pkg debug/dwarf, method (*AddrType) Common() *CommonType
   950  pkg debug/dwarf, method (*AddrType) Size() int64
   951  pkg debug/dwarf, method (*AddrType) String() string
   952  pkg debug/dwarf, method (*ArrayType) Common() *CommonType
   953  pkg debug/dwarf, method (*ArrayType) Size() int64
   954  pkg debug/dwarf, method (*ArrayType) String() string
   955  pkg debug/dwarf, method (*BasicType) Basic() *BasicType
   956  pkg debug/dwarf, method (*BasicType) Common() *CommonType
   957  pkg debug/dwarf, method (*BasicType) Size() int64
   958  pkg debug/dwarf, method (*BasicType) String() string
   959  pkg debug/dwarf, method (*BoolType) Basic() *BasicType
   960  pkg debug/dwarf, method (*BoolType) Common() *CommonType
   961  pkg debug/dwarf, method (*BoolType) Size() int64
   962  pkg debug/dwarf, method (*BoolType) String() string
   963  pkg debug/dwarf, method (*CharType) Basic() *BasicType
   964  pkg debug/dwarf, method (*CharType) Common() *CommonType
   965  pkg debug/dwarf, method (*CharType) Size() int64
   966  pkg debug/dwarf, method (*CharType) String() string
   967  pkg debug/dwarf, method (*CommonType) Common() *CommonType
   968  pkg debug/dwarf, method (*CommonType) Size() int64
   969  pkg debug/dwarf, method (*ComplexType) Basic() *BasicType
   970  pkg debug/dwarf, method (*ComplexType) Common() *CommonType
   971  pkg debug/dwarf, method (*ComplexType) Size() int64
   972  pkg debug/dwarf, method (*ComplexType) String() string
   973  pkg debug/dwarf, method (*Data) Reader() *Reader
   974  pkg debug/dwarf, method (*Data) Type(Offset) (Type, error)
   975  pkg debug/dwarf, method (*DotDotDotType) Common() *CommonType
   976  pkg debug/dwarf, method (*DotDotDotType) Size() int64
   977  pkg debug/dwarf, method (*DotDotDotType) String() string
   978  pkg debug/dwarf, method (*Entry) Val(Attr) interface{}
   979  pkg debug/dwarf, method (*EnumType) Common() *CommonType
   980  pkg debug/dwarf, method (*EnumType) Size() int64
   981  pkg debug/dwarf, method (*EnumType) String() string
   982  pkg debug/dwarf, method (*FloatType) Basic() *BasicType
   983  pkg debug/dwarf, method (*FloatType) Common() *CommonType
   984  pkg debug/dwarf, method (*FloatType) Size() int64
   985  pkg debug/dwarf, method (*FloatType) String() string
   986  pkg debug/dwarf, method (*FuncType) Common() *CommonType
   987  pkg debug/dwarf, method (*FuncType) Size() int64
   988  pkg debug/dwarf, method (*FuncType) String() string
   989  pkg debug/dwarf, method (*IntType) Basic() *BasicType
   990  pkg debug/dwarf, method (*IntType) Common() *CommonType
   991  pkg debug/dwarf, method (*IntType) Size() int64
   992  pkg debug/dwarf, method (*IntType) String() string
   993  pkg debug/dwarf, method (*PtrType) Common() *CommonType
   994  pkg debug/dwarf, method (*PtrType) Size() int64
   995  pkg debug/dwarf, method (*PtrType) String() string
   996  pkg debug/dwarf, method (*QualType) Common() *CommonType
   997  pkg debug/dwarf, method (*QualType) Size() int64
   998  pkg debug/dwarf, method (*QualType) String() string
   999  pkg debug/dwarf, method (*Reader) Next() (*Entry, error)
  1000  pkg debug/dwarf, method (*Reader) Seek(Offset)
  1001  pkg debug/dwarf, method (*Reader) SkipChildren()
  1002  pkg debug/dwarf, method (*StructType) Common() *CommonType
  1003  pkg debug/dwarf, method (*StructType) Defn() string
  1004  pkg debug/dwarf, method (*StructType) Size() int64
  1005  pkg debug/dwarf, method (*StructType) String() string
  1006  pkg debug/dwarf, method (*TypedefType) Common() *CommonType
  1007  pkg debug/dwarf, method (*TypedefType) Size() int64
  1008  pkg debug/dwarf, method (*TypedefType) String() string
  1009  pkg debug/dwarf, method (*UcharType) Basic() *BasicType
  1010  pkg debug/dwarf, method (*UcharType) Common() *CommonType
  1011  pkg debug/dwarf, method (*UcharType) Size() int64
  1012  pkg debug/dwarf, method (*UcharType) String() string
  1013  pkg debug/dwarf, method (*UintType) Basic() *BasicType
  1014  pkg debug/dwarf, method (*UintType) Common() *CommonType
  1015  pkg debug/dwarf, method (*UintType) Size() int64
  1016  pkg debug/dwarf, method (*UintType) String() string
  1017  pkg debug/dwarf, method (*VoidType) Common() *CommonType
  1018  pkg debug/dwarf, method (*VoidType) Size() int64
  1019  pkg debug/dwarf, method (*VoidType) String() string
  1020  pkg debug/dwarf, method (Attr) GoString() string
  1021  pkg debug/dwarf, method (Attr) String() string
  1022  pkg debug/dwarf, method (DecodeError) Error() string
  1023  pkg debug/dwarf, method (Tag) GoString() string
  1024  pkg debug/dwarf, method (Tag) String() string
  1025  pkg debug/dwarf, type AddrType struct
  1026  pkg debug/dwarf, type AddrType struct, embedded BasicType
  1027  pkg debug/dwarf, type ArrayType struct
  1028  pkg debug/dwarf, type ArrayType struct, Count int64
  1029  pkg debug/dwarf, type ArrayType struct, StrideBitSize int64
  1030  pkg debug/dwarf, type ArrayType struct, Type Type
  1031  pkg debug/dwarf, type ArrayType struct, embedded CommonType
  1032  pkg debug/dwarf, type Attr uint32
  1033  pkg debug/dwarf, type BasicType struct
  1034  pkg debug/dwarf, type BasicType struct, BitOffset int64
  1035  pkg debug/dwarf, type BasicType struct, BitSize int64
  1036  pkg debug/dwarf, type BasicType struct, embedded CommonType
  1037  pkg debug/dwarf, type BoolType struct
  1038  pkg debug/dwarf, type BoolType struct, embedded BasicType
  1039  pkg debug/dwarf, type CharType struct
  1040  pkg debug/dwarf, type CharType struct, embedded BasicType
  1041  pkg debug/dwarf, type CommonType struct
  1042  pkg debug/dwarf, type CommonType struct, ByteSize int64
  1043  pkg debug/dwarf, type CommonType struct, Name string
  1044  pkg debug/dwarf, type ComplexType struct
  1045  pkg debug/dwarf, type ComplexType struct, embedded BasicType
  1046  pkg debug/dwarf, type Data struct
  1047  pkg debug/dwarf, type DecodeError struct
  1048  pkg debug/dwarf, type DecodeError struct, Err string
  1049  pkg debug/dwarf, type DecodeError struct, Name string
  1050  pkg debug/dwarf, type DecodeError struct, Offset Offset
  1051  pkg debug/dwarf, type DotDotDotType struct
  1052  pkg debug/dwarf, type DotDotDotType struct, embedded CommonType
  1053  pkg debug/dwarf, type Entry struct
  1054  pkg debug/dwarf, type Entry struct, Children bool
  1055  pkg debug/dwarf, type Entry struct, Field []Field
  1056  pkg debug/dwarf, type Entry struct, Offset Offset
  1057  pkg debug/dwarf, type Entry struct, Tag Tag
  1058  pkg debug/dwarf, type EnumType struct
  1059  pkg debug/dwarf, type EnumType struct, EnumName string
  1060  pkg debug/dwarf, type EnumType struct, Val []*EnumValue
  1061  pkg debug/dwarf, type EnumType struct, embedded CommonType
  1062  pkg debug/dwarf, type EnumValue struct
  1063  pkg debug/dwarf, type EnumValue struct, Name string
  1064  pkg debug/dwarf, type EnumValue struct, Val int64
  1065  pkg debug/dwarf, type Field struct
  1066  pkg debug/dwarf, type Field struct, Attr Attr
  1067  pkg debug/dwarf, type Field struct, Val interface{}
  1068  pkg debug/dwarf, type FloatType struct
  1069  pkg debug/dwarf, type FloatType struct, embedded BasicType
  1070  pkg debug/dwarf, type FuncType struct
  1071  pkg debug/dwarf, type FuncType struct, ParamType []Type
  1072  pkg debug/dwarf, type FuncType struct, ReturnType Type
  1073  pkg debug/dwarf, type FuncType struct, embedded CommonType
  1074  pkg debug/dwarf, type IntType struct
  1075  pkg debug/dwarf, type IntType struct, embedded BasicType
  1076  pkg debug/dwarf, type Offset uint32
  1077  pkg debug/dwarf, type PtrType struct
  1078  pkg debug/dwarf, type PtrType struct, Type Type
  1079  pkg debug/dwarf, type PtrType struct, embedded CommonType
  1080  pkg debug/dwarf, type QualType struct
  1081  pkg debug/dwarf, type QualType struct, Qual string
  1082  pkg debug/dwarf, type QualType struct, Type Type
  1083  pkg debug/dwarf, type QualType struct, embedded CommonType
  1084  pkg debug/dwarf, type Reader struct
  1085  pkg debug/dwarf, type StructField struct
  1086  pkg debug/dwarf, type StructField struct, BitOffset int64
  1087  pkg debug/dwarf, type StructField struct, BitSize int64
  1088  pkg debug/dwarf, type StructField struct, ByteOffset int64
  1089  pkg debug/dwarf, type StructField struct, ByteSize int64
  1090  pkg debug/dwarf, type StructField struct, Name string
  1091  pkg debug/dwarf, type StructField struct, Type Type
  1092  pkg debug/dwarf, type StructType struct
  1093  pkg debug/dwarf, type StructType struct, Field []*StructField
  1094  pkg debug/dwarf, type StructType struct, Incomplete bool
  1095  pkg debug/dwarf, type StructType struct, Kind string
  1096  pkg debug/dwarf, type StructType struct, StructName string
  1097  pkg debug/dwarf, type StructType struct, embedded CommonType
  1098  pkg debug/dwarf, type Tag uint32
  1099  pkg debug/dwarf, type Type interface { Common, Size, String }
  1100  pkg debug/dwarf, type Type interface, Common() *CommonType
  1101  pkg debug/dwarf, type Type interface, Size() int64
  1102  pkg debug/dwarf, type Type interface, String() string
  1103  pkg debug/dwarf, type TypedefType struct
  1104  pkg debug/dwarf, type TypedefType struct, Type Type
  1105  pkg debug/dwarf, type TypedefType struct, embedded CommonType
  1106  pkg debug/dwarf, type UcharType struct
  1107  pkg debug/dwarf, type UcharType struct, embedded BasicType
  1108  pkg debug/dwarf, type UintType struct
  1109  pkg debug/dwarf, type UintType struct, embedded BasicType
  1110  pkg debug/dwarf, type VoidType struct
  1111  pkg debug/dwarf, type VoidType struct, embedded CommonType
  1112  pkg debug/elf, const ARM_MAGIC_TRAMP_NUMBER ideal-int
  1113  pkg debug/elf, const DF_BIND_NOW DynFlag
  1114  pkg debug/elf, const DF_ORIGIN DynFlag
  1115  pkg debug/elf, const DF_STATIC_TLS DynFlag
  1116  pkg debug/elf, const DF_SYMBOLIC DynFlag
  1117  pkg debug/elf, const DF_TEXTREL DynFlag
  1118  pkg debug/elf, const DT_BIND_NOW DynTag
  1119  pkg debug/elf, const DT_DEBUG DynTag
  1120  pkg debug/elf, const DT_ENCODING DynTag
  1121  pkg debug/elf, const DT_FINI DynTag
  1122  pkg debug/elf, const DT_FINI_ARRAY DynTag
  1123  pkg debug/elf, const DT_FINI_ARRAYSZ DynTag
  1124  pkg debug/elf, const DT_FLAGS DynTag
  1125  pkg debug/elf, const DT_HASH DynTag
  1126  pkg debug/elf, const DT_HIOS DynTag
  1127  pkg debug/elf, const DT_HIPROC DynTag
  1128  pkg debug/elf, const DT_INIT DynTag
  1129  pkg debug/elf, const DT_INIT_ARRAY DynTag
  1130  pkg debug/elf, const DT_INIT_ARRAYSZ DynTag
  1131  pkg debug/elf, const DT_JMPREL DynTag
  1132  pkg debug/elf, const DT_LOOS DynTag
  1133  pkg debug/elf, const DT_LOPROC DynTag
  1134  pkg debug/elf, const DT_NEEDED DynTag
  1135  pkg debug/elf, const DT_NULL DynTag
  1136  pkg debug/elf, const DT_PLTGOT DynTag
  1137  pkg debug/elf, const DT_PLTREL DynTag
  1138  pkg debug/elf, const DT_PLTRELSZ DynTag
  1139  pkg debug/elf, const DT_PREINIT_ARRAY DynTag
  1140  pkg debug/elf, const DT_PREINIT_ARRAYSZ DynTag
  1141  pkg debug/elf, const DT_REL DynTag
  1142  pkg debug/elf, const DT_RELA DynTag
  1143  pkg debug/elf, const DT_RELAENT DynTag
  1144  pkg debug/elf, const DT_RELASZ DynTag
  1145  pkg debug/elf, const DT_RELENT DynTag
  1146  pkg debug/elf, const DT_RELSZ DynTag
  1147  pkg debug/elf, const DT_RPATH DynTag
  1148  pkg debug/elf, const DT_RUNPATH DynTag
  1149  pkg debug/elf, const DT_SONAME DynTag
  1150  pkg debug/elf, const DT_STRSZ DynTag
  1151  pkg debug/elf, const DT_STRTAB DynTag
  1152  pkg debug/elf, const DT_SYMBOLIC DynTag
  1153  pkg debug/elf, const DT_SYMENT DynTag
  1154  pkg debug/elf, const DT_SYMTAB DynTag
  1155  pkg debug/elf, const DT_TEXTREL DynTag
  1156  pkg debug/elf, const DT_VERNEED DynTag
  1157  pkg debug/elf, const DT_VERNEEDNUM DynTag
  1158  pkg debug/elf, const DT_VERSYM DynTag
  1159  pkg debug/elf, const EI_ABIVERSION ideal-int
  1160  pkg debug/elf, const EI_CLASS ideal-int
  1161  pkg debug/elf, const EI_DATA ideal-int
  1162  pkg debug/elf, const EI_NIDENT ideal-int
  1163  pkg debug/elf, const EI_OSABI ideal-int
  1164  pkg debug/elf, const EI_PAD ideal-int
  1165  pkg debug/elf, const EI_VERSION ideal-int
  1166  pkg debug/elf, const ELFCLASS32 Class
  1167  pkg debug/elf, const ELFCLASS64 Class
  1168  pkg debug/elf, const ELFCLASSNONE Class
  1169  pkg debug/elf, const ELFDATA2LSB Data
  1170  pkg debug/elf, const ELFDATA2MSB Data
  1171  pkg debug/elf, const ELFDATANONE Data
  1172  pkg debug/elf, const ELFMAG ideal-string
  1173  pkg debug/elf, const ELFOSABI_86OPEN OSABI
  1174  pkg debug/elf, const ELFOSABI_AIX OSABI
  1175  pkg debug/elf, const ELFOSABI_ARM OSABI
  1176  pkg debug/elf, const ELFOSABI_FREEBSD OSABI
  1177  pkg debug/elf, const ELFOSABI_HPUX OSABI
  1178  pkg debug/elf, const ELFOSABI_HURD OSABI
  1179  pkg debug/elf, const ELFOSABI_IRIX OSABI
  1180  pkg debug/elf, const ELFOSABI_LINUX OSABI
  1181  pkg debug/elf, const ELFOSABI_MODESTO OSABI
  1182  pkg debug/elf, const ELFOSABI_NETBSD OSABI
  1183  pkg debug/elf, const ELFOSABI_NONE OSABI
  1184  pkg debug/elf, const ELFOSABI_NSK OSABI
  1185  pkg debug/elf, const ELFOSABI_OPENBSD OSABI
  1186  pkg debug/elf, const ELFOSABI_OPENVMS OSABI
  1187  pkg debug/elf, const ELFOSABI_SOLARIS OSABI
  1188  pkg debug/elf, const ELFOSABI_STANDALONE OSABI
  1189  pkg debug/elf, const ELFOSABI_TRU64 OSABI
  1190  pkg debug/elf, const EM_386 Machine
  1191  pkg debug/elf, const EM_486 Machine
  1192  pkg debug/elf, const EM_68HC12 Machine
  1193  pkg debug/elf, const EM_68K Machine
  1194  pkg debug/elf, const EM_860 Machine
  1195  pkg debug/elf, const EM_88K Machine
  1196  pkg debug/elf, const EM_960 Machine
  1197  pkg debug/elf, const EM_ALPHA Machine
  1198  pkg debug/elf, const EM_ALPHA_STD Machine
  1199  pkg debug/elf, const EM_ARC Machine
  1200  pkg debug/elf, const EM_ARM Machine
  1201  pkg debug/elf, const EM_COLDFIRE Machine
  1202  pkg debug/elf, const EM_FR20 Machine
  1203  pkg debug/elf, const EM_H8S Machine
  1204  pkg debug/elf, const EM_H8_300 Machine
  1205  pkg debug/elf, const EM_H8_300H Machine
  1206  pkg debug/elf, const EM_H8_500 Machine
  1207  pkg debug/elf, const EM_IA_64 Machine
  1208  pkg debug/elf, const EM_M32 Machine
  1209  pkg debug/elf, const EM_ME16 Machine
  1210  pkg debug/elf, const EM_MIPS Machine
  1211  pkg debug/elf, const EM_MIPS_RS3_LE Machine
  1212  pkg debug/elf, const EM_MIPS_RS4_BE Machine
  1213  pkg debug/elf, const EM_MIPS_X Machine
  1214  pkg debug/elf, const EM_MMA Machine
  1215  pkg debug/elf, const EM_NCPU Machine
  1216  pkg debug/elf, const EM_NDR1 Machine
  1217  pkg debug/elf, const EM_NONE Machine
  1218  pkg debug/elf, const EM_PARISC Machine
  1219  pkg debug/elf, const EM_PCP Machine
  1220  pkg debug/elf, const EM_PPC Machine
  1221  pkg debug/elf, const EM_PPC64 Machine
  1222  pkg debug/elf, const EM_RCE Machine
  1223  pkg debug/elf, const EM_RH32 Machine
  1224  pkg debug/elf, const EM_S370 Machine
  1225  pkg debug/elf, const EM_S390 Machine
  1226  pkg debug/elf, const EM_SH Machine
  1227  pkg debug/elf, const EM_SPARC Machine
  1228  pkg debug/elf, const EM_SPARC32PLUS Machine
  1229  pkg debug/elf, const EM_SPARCV9 Machine
  1230  pkg debug/elf, const EM_ST100 Machine
  1231  pkg debug/elf, const EM_STARCORE Machine
  1232  pkg debug/elf, const EM_TINYJ Machine
  1233  pkg debug/elf, const EM_TRICORE Machine
  1234  pkg debug/elf, const EM_V800 Machine
  1235  pkg debug/elf, const EM_VPP500 Machine
  1236  pkg debug/elf, const EM_X86_64 Machine
  1237  pkg debug/elf, const ET_CORE Type
  1238  pkg debug/elf, const ET_DYN Type
  1239  pkg debug/elf, const ET_EXEC Type
  1240  pkg debug/elf, const ET_HIOS Type
  1241  pkg debug/elf, const ET_HIPROC Type
  1242  pkg debug/elf, const ET_LOOS Type
  1243  pkg debug/elf, const ET_LOPROC Type
  1244  pkg debug/elf, const ET_NONE Type
  1245  pkg debug/elf, const ET_REL Type
  1246  pkg debug/elf, const EV_CURRENT Version
  1247  pkg debug/elf, const EV_NONE Version
  1248  pkg debug/elf, const NT_FPREGSET NType
  1249  pkg debug/elf, const NT_PRPSINFO NType
  1250  pkg debug/elf, const NT_PRSTATUS NType
  1251  pkg debug/elf, const PF_MASKOS ProgFlag
  1252  pkg debug/elf, const PF_MASKPROC ProgFlag
  1253  pkg debug/elf, const PF_R ProgFlag
  1254  pkg debug/elf, const PF_W ProgFlag
  1255  pkg debug/elf, const PF_X ProgFlag
  1256  pkg debug/elf, const PT_DYNAMIC ProgType
  1257  pkg debug/elf, const PT_HIOS ProgType
  1258  pkg debug/elf, const PT_HIPROC ProgType
  1259  pkg debug/elf, const PT_INTERP ProgType
  1260  pkg debug/elf, const PT_LOAD ProgType
  1261  pkg debug/elf, const PT_LOOS ProgType
  1262  pkg debug/elf, const PT_LOPROC ProgType
  1263  pkg debug/elf, const PT_NOTE ProgType
  1264  pkg debug/elf, const PT_NULL ProgType
  1265  pkg debug/elf, const PT_PHDR ProgType
  1266  pkg debug/elf, const PT_SHLIB ProgType
  1267  pkg debug/elf, const PT_TLS ProgType
  1268  pkg debug/elf, const R_386_32 R_386
  1269  pkg debug/elf, const R_386_COPY R_386
  1270  pkg debug/elf, const R_386_GLOB_DAT R_386
  1271  pkg debug/elf, const R_386_GOT32 R_386
  1272  pkg debug/elf, const R_386_GOTOFF R_386
  1273  pkg debug/elf, const R_386_GOTPC R_386
  1274  pkg debug/elf, const R_386_JMP_SLOT R_386
  1275  pkg debug/elf, const R_386_NONE R_386
  1276  pkg debug/elf, const R_386_PC32 R_386
  1277  pkg debug/elf, const R_386_PLT32 R_386
  1278  pkg debug/elf, const R_386_RELATIVE R_386
  1279  pkg debug/elf, const R_386_TLS_DTPMOD32 R_386
  1280  pkg debug/elf, const R_386_TLS_DTPOFF32 R_386
  1281  pkg debug/elf, const R_386_TLS_GD R_386
  1282  pkg debug/elf, const R_386_TLS_GD_32 R_386
  1283  pkg debug/elf, const R_386_TLS_GD_CALL R_386
  1284  pkg debug/elf, const R_386_TLS_GD_POP R_386
  1285  pkg debug/elf, const R_386_TLS_GD_PUSH R_386
  1286  pkg debug/elf, const R_386_TLS_GOTIE R_386
  1287  pkg debug/elf, const R_386_TLS_IE R_386
  1288  pkg debug/elf, const R_386_TLS_IE_32 R_386
  1289  pkg debug/elf, const R_386_TLS_LDM R_386
  1290  pkg debug/elf, const R_386_TLS_LDM_32 R_386
  1291  pkg debug/elf, const R_386_TLS_LDM_CALL R_386
  1292  pkg debug/elf, const R_386_TLS_LDM_POP R_386
  1293  pkg debug/elf, const R_386_TLS_LDM_PUSH R_386
  1294  pkg debug/elf, const R_386_TLS_LDO_32 R_386
  1295  pkg debug/elf, const R_386_TLS_LE R_386
  1296  pkg debug/elf, const R_386_TLS_LE_32 R_386
  1297  pkg debug/elf, const R_386_TLS_TPOFF R_386
  1298  pkg debug/elf, const R_386_TLS_TPOFF32 R_386
  1299  pkg debug/elf, const R_ALPHA_BRADDR R_ALPHA
  1300  pkg debug/elf, const R_ALPHA_COPY R_ALPHA
  1301  pkg debug/elf, const R_ALPHA_GLOB_DAT R_ALPHA
  1302  pkg debug/elf, const R_ALPHA_GPDISP R_ALPHA
  1303  pkg debug/elf, const R_ALPHA_GPREL32 R_ALPHA
  1304  pkg debug/elf, const R_ALPHA_GPRELHIGH R_ALPHA
  1305  pkg debug/elf, const R_ALPHA_GPRELLOW R_ALPHA
  1306  pkg debug/elf, const R_ALPHA_GPVALUE R_ALPHA
  1307  pkg debug/elf, const R_ALPHA_HINT R_ALPHA
  1308  pkg debug/elf, const R_ALPHA_IMMED_BR_HI32 R_ALPHA
  1309  pkg debug/elf, const R_ALPHA_IMMED_GP_16 R_ALPHA
  1310  pkg debug/elf, const R_ALPHA_IMMED_GP_HI32 R_ALPHA
  1311  pkg debug/elf, const R_ALPHA_IMMED_LO32 R_ALPHA
  1312  pkg debug/elf, const R_ALPHA_IMMED_SCN_HI32 R_ALPHA
  1313  pkg debug/elf, const R_ALPHA_JMP_SLOT R_ALPHA
  1314  pkg debug/elf, const R_ALPHA_LITERAL R_ALPHA
  1315  pkg debug/elf, const R_ALPHA_LITUSE R_ALPHA
  1316  pkg debug/elf, const R_ALPHA_NONE R_ALPHA
  1317  pkg debug/elf, const R_ALPHA_OP_PRSHIFT R_ALPHA
  1318  pkg debug/elf, const R_ALPHA_OP_PSUB R_ALPHA
  1319  pkg debug/elf, const R_ALPHA_OP_PUSH R_ALPHA
  1320  pkg debug/elf, const R_ALPHA_OP_STORE R_ALPHA
  1321  pkg debug/elf, const R_ALPHA_REFLONG R_ALPHA
  1322  pkg debug/elf, const R_ALPHA_REFQUAD R_ALPHA
  1323  pkg debug/elf, const R_ALPHA_RELATIVE R_ALPHA
  1324  pkg debug/elf, const R_ALPHA_SREL16 R_ALPHA
  1325  pkg debug/elf, const R_ALPHA_SREL32 R_ALPHA
  1326  pkg debug/elf, const R_ALPHA_SREL64 R_ALPHA
  1327  pkg debug/elf, const R_ARM_ABS12 R_ARM
  1328  pkg debug/elf, const R_ARM_ABS16 R_ARM
  1329  pkg debug/elf, const R_ARM_ABS32 R_ARM
  1330  pkg debug/elf, const R_ARM_ABS8 R_ARM
  1331  pkg debug/elf, const R_ARM_AMP_VCALL9 R_ARM
  1332  pkg debug/elf, const R_ARM_COPY R_ARM
  1333  pkg debug/elf, const R_ARM_GLOB_DAT R_ARM
  1334  pkg debug/elf, const R_ARM_GNU_VTENTRY R_ARM
  1335  pkg debug/elf, const R_ARM_GNU_VTINHERIT R_ARM
  1336  pkg debug/elf, const R_ARM_GOT32 R_ARM
  1337  pkg debug/elf, const R_ARM_GOTOFF R_ARM
  1338  pkg debug/elf, const R_ARM_GOTPC R_ARM
  1339  pkg debug/elf, const R_ARM_JUMP_SLOT R_ARM
  1340  pkg debug/elf, const R_ARM_NONE R_ARM
  1341  pkg debug/elf, const R_ARM_PC13 R_ARM
  1342  pkg debug/elf, const R_ARM_PC24 R_ARM
  1343  pkg debug/elf, const R_ARM_PLT32 R_ARM
  1344  pkg debug/elf, const R_ARM_RABS32 R_ARM
  1345  pkg debug/elf, const R_ARM_RBASE R_ARM
  1346  pkg debug/elf, const R_ARM_REL32 R_ARM
  1347  pkg debug/elf, const R_ARM_RELATIVE R_ARM
  1348  pkg debug/elf, const R_ARM_RPC24 R_ARM
  1349  pkg debug/elf, const R_ARM_RREL32 R_ARM
  1350  pkg debug/elf, const R_ARM_RSBREL32 R_ARM
  1351  pkg debug/elf, const R_ARM_SBREL32 R_ARM
  1352  pkg debug/elf, const R_ARM_SWI24 R_ARM
  1353  pkg debug/elf, const R_ARM_THM_ABS5 R_ARM
  1354  pkg debug/elf, const R_ARM_THM_PC22 R_ARM
  1355  pkg debug/elf, const R_ARM_THM_PC8 R_ARM
  1356  pkg debug/elf, const R_ARM_THM_RPC22 R_ARM
  1357  pkg debug/elf, const R_ARM_THM_SWI8 R_ARM
  1358  pkg debug/elf, const R_ARM_THM_XPC22 R_ARM
  1359  pkg debug/elf, const R_ARM_XPC25 R_ARM
  1360  pkg debug/elf, const R_PPC_ADDR14 R_PPC
  1361  pkg debug/elf, const R_PPC_ADDR14_BRNTAKEN R_PPC
  1362  pkg debug/elf, const R_PPC_ADDR14_BRTAKEN R_PPC
  1363  pkg debug/elf, const R_PPC_ADDR16 R_PPC
  1364  pkg debug/elf, const R_PPC_ADDR16_HA R_PPC
  1365  pkg debug/elf, const R_PPC_ADDR16_HI R_PPC
  1366  pkg debug/elf, const R_PPC_ADDR16_LO R_PPC
  1367  pkg debug/elf, const R_PPC_ADDR24 R_PPC
  1368  pkg debug/elf, const R_PPC_ADDR32 R_PPC
  1369  pkg debug/elf, const R_PPC_COPY R_PPC
  1370  pkg debug/elf, const R_PPC_DTPMOD32 R_PPC
  1371  pkg debug/elf, const R_PPC_DTPREL16 R_PPC
  1372  pkg debug/elf, const R_PPC_DTPREL16_HA R_PPC
  1373  pkg debug/elf, const R_PPC_DTPREL16_HI R_PPC
  1374  pkg debug/elf, const R_PPC_DTPREL16_LO R_PPC
  1375  pkg debug/elf, const R_PPC_DTPREL32 R_PPC
  1376  pkg debug/elf, const R_PPC_EMB_BIT_FLD R_PPC
  1377  pkg debug/elf, const R_PPC_EMB_MRKREF R_PPC
  1378  pkg debug/elf, const R_PPC_EMB_NADDR16 R_PPC
  1379  pkg debug/elf, const R_PPC_EMB_NADDR16_HA R_PPC
  1380  pkg debug/elf, const R_PPC_EMB_NADDR16_HI R_PPC
  1381  pkg debug/elf, const R_PPC_EMB_NADDR16_LO R_PPC
  1382  pkg debug/elf, const R_PPC_EMB_NADDR32 R_PPC
  1383  pkg debug/elf, const R_PPC_EMB_RELSDA R_PPC
  1384  pkg debug/elf, const R_PPC_EMB_RELSEC16 R_PPC
  1385  pkg debug/elf, const R_PPC_EMB_RELST_HA R_PPC
  1386  pkg debug/elf, const R_PPC_EMB_RELST_HI R_PPC
  1387  pkg debug/elf, const R_PPC_EMB_RELST_LO R_PPC
  1388  pkg debug/elf, const R_PPC_EMB_SDA21 R_PPC
  1389  pkg debug/elf, const R_PPC_EMB_SDA2I16 R_PPC
  1390  pkg debug/elf, const R_PPC_EMB_SDA2REL R_PPC
  1391  pkg debug/elf, const R_PPC_EMB_SDAI16 R_PPC
  1392  pkg debug/elf, const R_PPC_GLOB_DAT R_PPC
  1393  pkg debug/elf, const R_PPC_GOT16 R_PPC
  1394  pkg debug/elf, const R_PPC_GOT16_HA R_PPC
  1395  pkg debug/elf, const R_PPC_GOT16_HI R_PPC
  1396  pkg debug/elf, const R_PPC_GOT16_LO R_PPC
  1397  pkg debug/elf, const R_PPC_GOT_TLSGD16 R_PPC
  1398  pkg debug/elf, const R_PPC_GOT_TLSGD16_HA R_PPC
  1399  pkg debug/elf, const R_PPC_GOT_TLSGD16_HI R_PPC
  1400  pkg debug/elf, const R_PPC_GOT_TLSGD16_LO R_PPC
  1401  pkg debug/elf, const R_PPC_GOT_TLSLD16 R_PPC
  1402  pkg debug/elf, const R_PPC_GOT_TLSLD16_HA R_PPC
  1403  pkg debug/elf, const R_PPC_GOT_TLSLD16_HI R_PPC
  1404  pkg debug/elf, const R_PPC_GOT_TLSLD16_LO R_PPC
  1405  pkg debug/elf, const R_PPC_GOT_TPREL16 R_PPC
  1406  pkg debug/elf, const R_PPC_GOT_TPREL16_HA R_PPC
  1407  pkg debug/elf, const R_PPC_GOT_TPREL16_HI R_PPC
  1408  pkg debug/elf, const R_PPC_GOT_TPREL16_LO R_PPC
  1409  pkg debug/elf, const R_PPC_JMP_SLOT R_PPC
  1410  pkg debug/elf, const R_PPC_LOCAL24PC R_PPC
  1411  pkg debug/elf, const R_PPC_NONE R_PPC
  1412  pkg debug/elf, const R_PPC_PLT16_HA R_PPC
  1413  pkg debug/elf, const R_PPC_PLT16_HI R_PPC
  1414  pkg debug/elf, const R_PPC_PLT16_LO R_PPC
  1415  pkg debug/elf, const R_PPC_PLT32 R_PPC
  1416  pkg debug/elf, const R_PPC_PLTREL24 R_PPC
  1417  pkg debug/elf, const R_PPC_PLTREL32 R_PPC
  1418  pkg debug/elf, const R_PPC_REL14 R_PPC
  1419  pkg debug/elf, const R_PPC_REL14_BRNTAKEN R_PPC
  1420  pkg debug/elf, const R_PPC_REL14_BRTAKEN R_PPC
  1421  pkg debug/elf, const R_PPC_REL24 R_PPC
  1422  pkg debug/elf, const R_PPC_REL32 R_PPC
  1423  pkg debug/elf, const R_PPC_RELATIVE R_PPC
  1424  pkg debug/elf, const R_PPC_SDAREL16 R_PPC
  1425  pkg debug/elf, const R_PPC_SECTOFF R_PPC
  1426  pkg debug/elf, const R_PPC_SECTOFF_HA R_PPC
  1427  pkg debug/elf, const R_PPC_SECTOFF_HI R_PPC
  1428  pkg debug/elf, const R_PPC_SECTOFF_LO R_PPC
  1429  pkg debug/elf, const R_PPC_TLS R_PPC
  1430  pkg debug/elf, const R_PPC_TPREL16 R_PPC
  1431  pkg debug/elf, const R_PPC_TPREL16_HA R_PPC
  1432  pkg debug/elf, const R_PPC_TPREL16_HI R_PPC
  1433  pkg debug/elf, const R_PPC_TPREL16_LO R_PPC
  1434  pkg debug/elf, const R_PPC_TPREL32 R_PPC
  1435  pkg debug/elf, const R_PPC_UADDR16 R_PPC
  1436  pkg debug/elf, const R_PPC_UADDR32 R_PPC
  1437  pkg debug/elf, const R_SPARC_10 R_SPARC
  1438  pkg debug/elf, const R_SPARC_11 R_SPARC
  1439  pkg debug/elf, const R_SPARC_13 R_SPARC
  1440  pkg debug/elf, const R_SPARC_16 R_SPARC
  1441  pkg debug/elf, const R_SPARC_22 R_SPARC
  1442  pkg debug/elf, const R_SPARC_32 R_SPARC
  1443  pkg debug/elf, const R_SPARC_5 R_SPARC
  1444  pkg debug/elf, const R_SPARC_6 R_SPARC
  1445  pkg debug/elf, const R_SPARC_64 R_SPARC
  1446  pkg debug/elf, const R_SPARC_7 R_SPARC
  1447  pkg debug/elf, const R_SPARC_8 R_SPARC
  1448  pkg debug/elf, const R_SPARC_COPY R_SPARC
  1449  pkg debug/elf, const R_SPARC_DISP16 R_SPARC
  1450  pkg debug/elf, const R_SPARC_DISP32 R_SPARC
  1451  pkg debug/elf, const R_SPARC_DISP64 R_SPARC
  1452  pkg debug/elf, const R_SPARC_DISP8 R_SPARC
  1453  pkg debug/elf, const R_SPARC_GLOB_DAT R_SPARC
  1454  pkg debug/elf, const R_SPARC_GLOB_JMP R_SPARC
  1455  pkg debug/elf, const R_SPARC_GOT10 R_SPARC
  1456  pkg debug/elf, const R_SPARC_GOT13 R_SPARC
  1457  pkg debug/elf, const R_SPARC_GOT22 R_SPARC
  1458  pkg debug/elf, const R_SPARC_H44 R_SPARC
  1459  pkg debug/elf, const R_SPARC_HH22 R_SPARC
  1460  pkg debug/elf, const R_SPARC_HI22 R_SPARC
  1461  pkg debug/elf, const R_SPARC_HIPLT22 R_SPARC
  1462  pkg debug/elf, const R_SPARC_HIX22 R_SPARC
  1463  pkg debug/elf, const R_SPARC_HM10 R_SPARC
  1464  pkg debug/elf, const R_SPARC_JMP_SLOT R_SPARC
  1465  pkg debug/elf, const R_SPARC_L44 R_SPARC
  1466  pkg debug/elf, const R_SPARC_LM22 R_SPARC
  1467  pkg debug/elf, const R_SPARC_LO10 R_SPARC
  1468  pkg debug/elf, const R_SPARC_LOPLT10 R_SPARC
  1469  pkg debug/elf, const R_SPARC_LOX10 R_SPARC
  1470  pkg debug/elf, const R_SPARC_M44 R_SPARC
  1471  pkg debug/elf, const R_SPARC_NONE R_SPARC
  1472  pkg debug/elf, const R_SPARC_OLO10 R_SPARC
  1473  pkg debug/elf, const R_SPARC_PC10 R_SPARC
  1474  pkg debug/elf, const R_SPARC_PC22 R_SPARC
  1475  pkg debug/elf, const R_SPARC_PCPLT10 R_SPARC
  1476  pkg debug/elf, const R_SPARC_PCPLT22 R_SPARC
  1477  pkg debug/elf, const R_SPARC_PCPLT32 R_SPARC
  1478  pkg debug/elf, const R_SPARC_PC_HH22 R_SPARC
  1479  pkg debug/elf, const R_SPARC_PC_HM10 R_SPARC
  1480  pkg debug/elf, const R_SPARC_PC_LM22 R_SPARC
  1481  pkg debug/elf, const R_SPARC_PLT32 R_SPARC
  1482  pkg debug/elf, const R_SPARC_PLT64 R_SPARC
  1483  pkg debug/elf, const R_SPARC_REGISTER R_SPARC
  1484  pkg debug/elf, const R_SPARC_RELATIVE R_SPARC
  1485  pkg debug/elf, const R_SPARC_UA16 R_SPARC
  1486  pkg debug/elf, const R_SPARC_UA32 R_SPARC
  1487  pkg debug/elf, const R_SPARC_UA64 R_SPARC
  1488  pkg debug/elf, const R_SPARC_WDISP16 R_SPARC
  1489  pkg debug/elf, const R_SPARC_WDISP19 R_SPARC
  1490  pkg debug/elf, const R_SPARC_WDISP22 R_SPARC
  1491  pkg debug/elf, const R_SPARC_WDISP30 R_SPARC
  1492  pkg debug/elf, const R_SPARC_WPLT30 R_SPARC
  1493  pkg debug/elf, const R_X86_64_16 R_X86_64
  1494  pkg debug/elf, const R_X86_64_32 R_X86_64
  1495  pkg debug/elf, const R_X86_64_32S R_X86_64
  1496  pkg debug/elf, const R_X86_64_64 R_X86_64
  1497  pkg debug/elf, const R_X86_64_8 R_X86_64
  1498  pkg debug/elf, const R_X86_64_COPY R_X86_64
  1499  pkg debug/elf, const R_X86_64_DTPMOD64 R_X86_64
  1500  pkg debug/elf, const R_X86_64_DTPOFF32 R_X86_64
  1501  pkg debug/elf, const R_X86_64_DTPOFF64 R_X86_64
  1502  pkg debug/elf, const R_X86_64_GLOB_DAT R_X86_64
  1503  pkg debug/elf, const R_X86_64_GOT32 R_X86_64
  1504  pkg debug/elf, const R_X86_64_GOTPCREL R_X86_64
  1505  pkg debug/elf, const R_X86_64_GOTTPOFF R_X86_64
  1506  pkg debug/elf, const R_X86_64_JMP_SLOT R_X86_64
  1507  pkg debug/elf, const R_X86_64_NONE R_X86_64
  1508  pkg debug/elf, const R_X86_64_PC16 R_X86_64
  1509  pkg debug/elf, const R_X86_64_PC32 R_X86_64
  1510  pkg debug/elf, const R_X86_64_PC8 R_X86_64
  1511  pkg debug/elf, const R_X86_64_PLT32 R_X86_64
  1512  pkg debug/elf, const R_X86_64_RELATIVE R_X86_64
  1513  pkg debug/elf, const R_X86_64_TLSGD R_X86_64
  1514  pkg debug/elf, const R_X86_64_TLSLD R_X86_64
  1515  pkg debug/elf, const R_X86_64_TPOFF32 R_X86_64
  1516  pkg debug/elf, const R_X86_64_TPOFF64 R_X86_64
  1517  pkg debug/elf, const SHF_ALLOC SectionFlag
  1518  pkg debug/elf, const SHF_EXECINSTR SectionFlag
  1519  pkg debug/elf, const SHF_GROUP SectionFlag
  1520  pkg debug/elf, const SHF_INFO_LINK SectionFlag
  1521  pkg debug/elf, const SHF_LINK_ORDER SectionFlag
  1522  pkg debug/elf, const SHF_MASKOS SectionFlag
  1523  pkg debug/elf, const SHF_MASKPROC SectionFlag
  1524  pkg debug/elf, const SHF_MERGE SectionFlag
  1525  pkg debug/elf, const SHF_OS_NONCONFORMING SectionFlag
  1526  pkg debug/elf, const SHF_STRINGS SectionFlag
  1527  pkg debug/elf, const SHF_TLS SectionFlag
  1528  pkg debug/elf, const SHF_WRITE SectionFlag
  1529  pkg debug/elf, const SHN_ABS SectionIndex
  1530  pkg debug/elf, const SHN_COMMON SectionIndex
  1531  pkg debug/elf, const SHN_HIOS SectionIndex
  1532  pkg debug/elf, const SHN_HIPROC SectionIndex
  1533  pkg debug/elf, const SHN_HIRESERVE SectionIndex
  1534  pkg debug/elf, const SHN_LOOS SectionIndex
  1535  pkg debug/elf, const SHN_LOPROC SectionIndex
  1536  pkg debug/elf, const SHN_LORESERVE SectionIndex
  1537  pkg debug/elf, const SHN_UNDEF SectionIndex
  1538  pkg debug/elf, const SHN_XINDEX SectionIndex
  1539  pkg debug/elf, const SHT_DYNAMIC SectionType
  1540  pkg debug/elf, const SHT_DYNSYM SectionType
  1541  pkg debug/elf, const SHT_FINI_ARRAY SectionType
  1542  pkg debug/elf, const SHT_GNU_ATTRIBUTES SectionType
  1543  pkg debug/elf, const SHT_GNU_HASH SectionType
  1544  pkg debug/elf, const SHT_GNU_LIBLIST SectionType
  1545  pkg debug/elf, const SHT_GNU_VERDEF SectionType
  1546  pkg debug/elf, const SHT_GNU_VERNEED SectionType
  1547  pkg debug/elf, const SHT_GNU_VERSYM SectionType
  1548  pkg debug/elf, const SHT_GROUP SectionType
  1549  pkg debug/elf, const SHT_HASH SectionType
  1550  pkg debug/elf, const SHT_HIOS SectionType
  1551  pkg debug/elf, const SHT_HIPROC SectionType
  1552  pkg debug/elf, const SHT_HIUSER SectionType
  1553  pkg debug/elf, const SHT_INIT_ARRAY SectionType
  1554  pkg debug/elf, const SHT_LOOS SectionType
  1555  pkg debug/elf, const SHT_LOPROC SectionType
  1556  pkg debug/elf, const SHT_LOUSER SectionType
  1557  pkg debug/elf, const SHT_NOBITS SectionType
  1558  pkg debug/elf, const SHT_NOTE SectionType
  1559  pkg debug/elf, const SHT_NULL SectionType
  1560  pkg debug/elf, const SHT_PREINIT_ARRAY SectionType
  1561  pkg debug/elf, const SHT_PROGBITS SectionType
  1562  pkg debug/elf, const SHT_REL SectionType
  1563  pkg debug/elf, const SHT_RELA SectionType
  1564  pkg debug/elf, const SHT_SHLIB SectionType
  1565  pkg debug/elf, const SHT_STRTAB SectionType
  1566  pkg debug/elf, const SHT_SYMTAB SectionType
  1567  pkg debug/elf, const SHT_SYMTAB_SHNDX SectionType
  1568  pkg debug/elf, const STB_GLOBAL SymBind
  1569  pkg debug/elf, const STB_HIOS SymBind
  1570  pkg debug/elf, const STB_HIPROC SymBind
  1571  pkg debug/elf, const STB_LOCAL SymBind
  1572  pkg debug/elf, const STB_LOOS SymBind
  1573  pkg debug/elf, const STB_LOPROC SymBind
  1574  pkg debug/elf, const STB_WEAK SymBind
  1575  pkg debug/elf, const STT_COMMON SymType
  1576  pkg debug/elf, const STT_FILE SymType
  1577  pkg debug/elf, const STT_FUNC SymType
  1578  pkg debug/elf, const STT_HIOS SymType
  1579  pkg debug/elf, const STT_HIPROC SymType
  1580  pkg debug/elf, const STT_LOOS SymType
  1581  pkg debug/elf, const STT_LOPROC SymType
  1582  pkg debug/elf, const STT_NOTYPE SymType
  1583  pkg debug/elf, const STT_OBJECT SymType
  1584  pkg debug/elf, const STT_SECTION SymType
  1585  pkg debug/elf, const STT_TLS SymType
  1586  pkg debug/elf, const STV_DEFAULT SymVis
  1587  pkg debug/elf, const STV_HIDDEN SymVis
  1588  pkg debug/elf, const STV_INTERNAL SymVis
  1589  pkg debug/elf, const STV_PROTECTED SymVis
  1590  pkg debug/elf, const Sym32Size ideal-int
  1591  pkg debug/elf, const Sym64Size ideal-int
  1592  pkg debug/elf, func NewFile(io.ReaderAt) (*File, error)
  1593  pkg debug/elf, func Open(string) (*File, error)
  1594  pkg debug/elf, func R_INFO(uint32, uint32) uint64
  1595  pkg debug/elf, func R_INFO32(uint32, uint32) uint32
  1596  pkg debug/elf, func R_SYM32(uint32) uint32
  1597  pkg debug/elf, func R_SYM64(uint64) uint32
  1598  pkg debug/elf, func R_TYPE32(uint32) uint32
  1599  pkg debug/elf, func R_TYPE64(uint64) uint32
  1600  pkg debug/elf, func ST_BIND(uint8) SymBind
  1601  pkg debug/elf, func ST_INFO(SymBind, SymType) uint8
  1602  pkg debug/elf, func ST_TYPE(uint8) SymType
  1603  pkg debug/elf, func ST_VISIBILITY(uint8) SymVis
  1604  pkg debug/elf, method (*File) Close() error
  1605  pkg debug/elf, method (*File) DWARF() (*dwarf.Data, error)
  1606  pkg debug/elf, method (*File) ImportedLibraries() ([]string, error)
  1607  pkg debug/elf, method (*File) ImportedSymbols() ([]ImportedSymbol, error)
  1608  pkg debug/elf, method (*File) Section(string) *Section
  1609  pkg debug/elf, method (*File) SectionByType(SectionType) *Section
  1610  pkg debug/elf, method (*File) Symbols() ([]Symbol, error)
  1611  pkg debug/elf, method (*FormatError) Error() string
  1612  pkg debug/elf, method (*Prog) Open() io.ReadSeeker
  1613  pkg debug/elf, method (*Section) Data() ([]uint8, error)
  1614  pkg debug/elf, method (*Section) Open() io.ReadSeeker
  1615  pkg debug/elf, method (Class) GoString() string
  1616  pkg debug/elf, method (Class) String() string
  1617  pkg debug/elf, method (Data) GoString() string
  1618  pkg debug/elf, method (Data) String() string
  1619  pkg debug/elf, method (DynFlag) GoString() string
  1620  pkg debug/elf, method (DynFlag) String() string
  1621  pkg debug/elf, method (DynTag) GoString() string
  1622  pkg debug/elf, method (DynTag) String() string
  1623  pkg debug/elf, method (Machine) GoString() string
  1624  pkg debug/elf, method (Machine) String() string
  1625  pkg debug/elf, method (NType) GoString() string
  1626  pkg debug/elf, method (NType) String() string
  1627  pkg debug/elf, method (OSABI) GoString() string
  1628  pkg debug/elf, method (OSABI) String() string
  1629  pkg debug/elf, method (Prog) ReadAt([]uint8, int64) (int, error)
  1630  pkg debug/elf, method (ProgFlag) GoString() string
  1631  pkg debug/elf, method (ProgFlag) String() string
  1632  pkg debug/elf, method (ProgType) GoString() string
  1633  pkg debug/elf, method (ProgType) String() string
  1634  pkg debug/elf, method (R_386) GoString() string
  1635  pkg debug/elf, method (R_386) String() string
  1636  pkg debug/elf, method (R_ALPHA) GoString() string
  1637  pkg debug/elf, method (R_ALPHA) String() string
  1638  pkg debug/elf, method (R_ARM) GoString() string
  1639  pkg debug/elf, method (R_ARM) String() string
  1640  pkg debug/elf, method (R_PPC) GoString() string
  1641  pkg debug/elf, method (R_PPC) String() string
  1642  pkg debug/elf, method (R_SPARC) GoString() string
  1643  pkg debug/elf, method (R_SPARC) String() string
  1644  pkg debug/elf, method (R_X86_64) GoString() string
  1645  pkg debug/elf, method (R_X86_64) String() string
  1646  pkg debug/elf, method (Section) ReadAt([]uint8, int64) (int, error)
  1647  pkg debug/elf, method (SectionFlag) GoString() string
  1648  pkg debug/elf, method (SectionFlag) String() string
  1649  pkg debug/elf, method (SectionIndex) GoString() string
  1650  pkg debug/elf, method (SectionIndex) String() string
  1651  pkg debug/elf, method (SectionType) GoString() string
  1652  pkg debug/elf, method (SectionType) String() string
  1653  pkg debug/elf, method (SymBind) GoString() string
  1654  pkg debug/elf, method (SymBind) String() string
  1655  pkg debug/elf, method (SymType) GoString() string
  1656  pkg debug/elf, method (SymType) String() string
  1657  pkg debug/elf, method (SymVis) GoString() string
  1658  pkg debug/elf, method (SymVis) String() string
  1659  pkg debug/elf, method (Type) GoString() string
  1660  pkg debug/elf, method (Type) String() string
  1661  pkg debug/elf, method (Version) GoString() string
  1662  pkg debug/elf, method (Version) String() string
  1663  pkg debug/elf, type Class uint8
  1664  pkg debug/elf, type Data uint8
  1665  pkg debug/elf, type Dyn32 struct
  1666  pkg debug/elf, type Dyn32 struct, Tag int32
  1667  pkg debug/elf, type Dyn32 struct, Val uint32
  1668  pkg debug/elf, type Dyn64 struct
  1669  pkg debug/elf, type Dyn64 struct, Tag int64
  1670  pkg debug/elf, type Dyn64 struct, Val uint64
  1671  pkg debug/elf, type DynFlag int
  1672  pkg debug/elf, type DynTag int
  1673  pkg debug/elf, type File struct
  1674  pkg debug/elf, type File struct, Progs []*Prog
  1675  pkg debug/elf, type File struct, Sections []*Section
  1676  pkg debug/elf, type File struct, embedded FileHeader
  1677  pkg debug/elf, type FileHeader struct
  1678  pkg debug/elf, type FileHeader struct, ABIVersion uint8
  1679  pkg debug/elf, type FileHeader struct, ByteOrder binary.ByteOrder
  1680  pkg debug/elf, type FileHeader struct, Class Class
  1681  pkg debug/elf, type FileHeader struct, Data Data
  1682  pkg debug/elf, type FileHeader struct, Machine Machine
  1683  pkg debug/elf, type FileHeader struct, OSABI OSABI
  1684  pkg debug/elf, type FileHeader struct, Type Type
  1685  pkg debug/elf, type FileHeader struct, Version Version
  1686  pkg debug/elf, type FormatError struct
  1687  pkg debug/elf, type Header32 struct
  1688  pkg debug/elf, type Header32 struct, Ehsize uint16
  1689  pkg debug/elf, type Header32 struct, Entry uint32
  1690  pkg debug/elf, type Header32 struct, Flags uint32
  1691  pkg debug/elf, type Header32 struct, Ident [16]uint8
  1692  pkg debug/elf, type Header32 struct, Machine uint16
  1693  pkg debug/elf, type Header32 struct, Phentsize uint16
  1694  pkg debug/elf, type Header32 struct, Phnum uint16
  1695  pkg debug/elf, type Header32 struct, Phoff uint32
  1696  pkg debug/elf, type Header32 struct, Shentsize uint16
  1697  pkg debug/elf, type Header32 struct, Shnum uint16
  1698  pkg debug/elf, type Header32 struct, Shoff uint32
  1699  pkg debug/elf, type Header32 struct, Shstrndx uint16
  1700  pkg debug/elf, type Header32 struct, Type uint16
  1701  pkg debug/elf, type Header32 struct, Version uint32
  1702  pkg debug/elf, type Header64 struct
  1703  pkg debug/elf, type Header64 struct, Ehsize uint16
  1704  pkg debug/elf, type Header64 struct, Entry uint64
  1705  pkg debug/elf, type Header64 struct, Flags uint32
  1706  pkg debug/elf, type Header64 struct, Ident [16]uint8
  1707  pkg debug/elf, type Header64 struct, Machine uint16
  1708  pkg debug/elf, type Header64 struct, Phentsize uint16
  1709  pkg debug/elf, type Header64 struct, Phnum uint16
  1710  pkg debug/elf, type Header64 struct, Phoff uint64
  1711  pkg debug/elf, type Header64 struct, Shentsize uint16
  1712  pkg debug/elf, type Header64 struct, Shnum uint16
  1713  pkg debug/elf, type Header64 struct, Shoff uint64
  1714  pkg debug/elf, type Header64 struct, Shstrndx uint16
  1715  pkg debug/elf, type Header64 struct, Type uint16
  1716  pkg debug/elf, type Header64 struct, Version uint32
  1717  pkg debug/elf, type ImportedSymbol struct
  1718  pkg debug/elf, type ImportedSymbol struct, Library string
  1719  pkg debug/elf, type ImportedSymbol struct, Name string
  1720  pkg debug/elf, type ImportedSymbol struct, Version string
  1721  pkg debug/elf, type Machine uint16
  1722  pkg debug/elf, type NType int
  1723  pkg debug/elf, type OSABI uint8
  1724  pkg debug/elf, type Prog struct
  1725  pkg debug/elf, type Prog struct, embedded ProgHeader
  1726  pkg debug/elf, type Prog struct, embedded io.ReaderAt
  1727  pkg debug/elf, type Prog32 struct
  1728  pkg debug/elf, type Prog32 struct, Align uint32
  1729  pkg debug/elf, type Prog32 struct, Filesz uint32
  1730  pkg debug/elf, type Prog32 struct, Flags uint32
  1731  pkg debug/elf, type Prog32 struct, Memsz uint32
  1732  pkg debug/elf, type Prog32 struct, Off uint32
  1733  pkg debug/elf, type Prog32 struct, Paddr uint32
  1734  pkg debug/elf, type Prog32 struct, Type uint32
  1735  pkg debug/elf, type Prog32 struct, Vaddr uint32
  1736  pkg debug/elf, type Prog64 struct
  1737  pkg debug/elf, type Prog64 struct, Align uint64
  1738  pkg debug/elf, type Prog64 struct, Filesz uint64
  1739  pkg debug/elf, type Prog64 struct, Flags uint32
  1740  pkg debug/elf, type Prog64 struct, Memsz uint64
  1741  pkg debug/elf, type Prog64 struct, Off uint64
  1742  pkg debug/elf, type Prog64 struct, Paddr uint64
  1743  pkg debug/elf, type Prog64 struct, Type uint32
  1744  pkg debug/elf, type Prog64 struct, Vaddr uint64
  1745  pkg debug/elf, type ProgFlag uint32
  1746  pkg debug/elf, type ProgHeader struct
  1747  pkg debug/elf, type ProgHeader struct, Align uint64
  1748  pkg debug/elf, type ProgHeader struct, Filesz uint64
  1749  pkg debug/elf, type ProgHeader struct, Flags ProgFlag
  1750  pkg debug/elf, type ProgHeader struct, Memsz uint64
  1751  pkg debug/elf, type ProgHeader struct, Off uint64
  1752  pkg debug/elf, type ProgHeader struct, Paddr uint64
  1753  pkg debug/elf, type ProgHeader struct, Type ProgType
  1754  pkg debug/elf, type ProgHeader struct, Vaddr uint64
  1755  pkg debug/elf, type ProgType int
  1756  pkg debug/elf, type R_386 int
  1757  pkg debug/elf, type R_ALPHA int
  1758  pkg debug/elf, type R_ARM int
  1759  pkg debug/elf, type R_PPC int
  1760  pkg debug/elf, type R_SPARC int
  1761  pkg debug/elf, type R_X86_64 int
  1762  pkg debug/elf, type Rel32 struct
  1763  pkg debug/elf, type Rel32 struct, Info uint32
  1764  pkg debug/elf, type Rel32 struct, Off uint32
  1765  pkg debug/elf, type Rel64 struct
  1766  pkg debug/elf, type Rel64 struct, Info uint64
  1767  pkg debug/elf, type Rel64 struct, Off uint64
  1768  pkg debug/elf, type Rela32 struct
  1769  pkg debug/elf, type Rela32 struct, Addend int32
  1770  pkg debug/elf, type Rela32 struct, Info uint32
  1771  pkg debug/elf, type Rela32 struct, Off uint32
  1772  pkg debug/elf, type Rela64 struct
  1773  pkg debug/elf, type Rela64 struct, Addend int64
  1774  pkg debug/elf, type Rela64 struct, Info uint64
  1775  pkg debug/elf, type Rela64 struct, Off uint64
  1776  pkg debug/elf, type Section struct
  1777  pkg debug/elf, type Section struct, embedded SectionHeader
  1778  pkg debug/elf, type Section struct, embedded io.ReaderAt
  1779  pkg debug/elf, type Section32 struct
  1780  pkg debug/elf, type Section32 struct, Addr uint32
  1781  pkg debug/elf, type Section32 struct, Addralign uint32
  1782  pkg debug/elf, type Section32 struct, Entsize uint32
  1783  pkg debug/elf, type Section32 struct, Flags uint32
  1784  pkg debug/elf, type Section32 struct, Info uint32
  1785  pkg debug/elf, type Section32 struct, Link uint32
  1786  pkg debug/elf, type Section32 struct, Name uint32
  1787  pkg debug/elf, type Section32 struct, Off uint32
  1788  pkg debug/elf, type Section32 struct, Size uint32
  1789  pkg debug/elf, type Section32 struct, Type uint32
  1790  pkg debug/elf, type Section64 struct
  1791  pkg debug/elf, type Section64 struct, Addr uint64
  1792  pkg debug/elf, type Section64 struct, Addralign uint64
  1793  pkg debug/elf, type Section64 struct, Entsize uint64
  1794  pkg debug/elf, type Section64 struct, Flags uint64
  1795  pkg debug/elf, type Section64 struct, Info uint32
  1796  pkg debug/elf, type Section64 struct, Link uint32
  1797  pkg debug/elf, type Section64 struct, Name uint32
  1798  pkg debug/elf, type Section64 struct, Off uint64
  1799  pkg debug/elf, type Section64 struct, Size uint64
  1800  pkg debug/elf, type Section64 struct, Type uint32
  1801  pkg debug/elf, type SectionFlag uint32
  1802  pkg debug/elf, type SectionHeader struct
  1803  pkg debug/elf, type SectionHeader struct, Addr uint64
  1804  pkg debug/elf, type SectionHeader struct, Addralign uint64
  1805  pkg debug/elf, type SectionHeader struct, Entsize uint64
  1806  pkg debug/elf, type SectionHeader struct, Flags SectionFlag
  1807  pkg debug/elf, type SectionHeader struct, Info uint32
  1808  pkg debug/elf, type SectionHeader struct, Link uint32
  1809  pkg debug/elf, type SectionHeader struct, Name string
  1810  pkg debug/elf, type SectionHeader struct, Offset uint64
  1811  pkg debug/elf, type SectionHeader struct, Size uint64
  1812  pkg debug/elf, type SectionHeader struct, Type SectionType
  1813  pkg debug/elf, type SectionIndex int
  1814  pkg debug/elf, type SectionType uint32
  1815  pkg debug/elf, type Sym32 struct
  1816  pkg debug/elf, type Sym32 struct, Info uint8
  1817  pkg debug/elf, type Sym32 struct, Name uint32
  1818  pkg debug/elf, type Sym32 struct, Other uint8
  1819  pkg debug/elf, type Sym32 struct, Shndx uint16
  1820  pkg debug/elf, type Sym32 struct, Size uint32
  1821  pkg debug/elf, type Sym32 struct, Value uint32
  1822  pkg debug/elf, type Sym64 struct
  1823  pkg debug/elf, type Sym64 struct, Info uint8
  1824  pkg debug/elf, type Sym64 struct, Name uint32
  1825  pkg debug/elf, type Sym64 struct, Other uint8
  1826  pkg debug/elf, type Sym64 struct, Shndx uint16
  1827  pkg debug/elf, type Sym64 struct, Size uint64
  1828  pkg debug/elf, type Sym64 struct, Value uint64
  1829  pkg debug/elf, type SymBind int
  1830  pkg debug/elf, type SymType int
  1831  pkg debug/elf, type SymVis int
  1832  pkg debug/elf, type Symbol struct
  1833  pkg debug/elf, type Symbol struct, Info uint8
  1834  pkg debug/elf, type Symbol struct, Name string
  1835  pkg debug/elf, type Symbol struct, Other uint8
  1836  pkg debug/elf, type Symbol struct, Section SectionIndex
  1837  pkg debug/elf, type Symbol struct, Size uint64
  1838  pkg debug/elf, type Symbol struct, Value uint64
  1839  pkg debug/elf, type Type uint16
  1840  pkg debug/elf, type Version uint8
  1841  pkg debug/gosym, func NewLineTable([]uint8, uint64) *LineTable
  1842  pkg debug/gosym, func NewTable([]uint8, *LineTable) (*Table, error)
  1843  pkg debug/gosym, method (*DecodingError) Error() string
  1844  pkg debug/gosym, method (*LineTable) LineToPC(int, uint64) uint64
  1845  pkg debug/gosym, method (*LineTable) PCToLine(uint64) int
  1846  pkg debug/gosym, method (*Sym) BaseName() string
  1847  pkg debug/gosym, method (*Sym) PackageName() string
  1848  pkg debug/gosym, method (*Sym) ReceiverName() string
  1849  pkg debug/gosym, method (*Sym) Static() bool
  1850  pkg debug/gosym, method (*Table) LineToPC(string, int) (uint64, *Func, error)
  1851  pkg debug/gosym, method (*Table) LookupFunc(string) *Func
  1852  pkg debug/gosym, method (*Table) LookupSym(string) *Sym
  1853  pkg debug/gosym, method (*Table) PCToFunc(uint64) *Func
  1854  pkg debug/gosym, method (*Table) PCToLine(uint64) (string, int, *Func)
  1855  pkg debug/gosym, method (*Table) SymByAddr(uint64) *Sym
  1856  pkg debug/gosym, method (*UnknownLineError) Error() string
  1857  pkg debug/gosym, method (Func) BaseName() string
  1858  pkg debug/gosym, method (Func) PackageName() string
  1859  pkg debug/gosym, method (Func) ReceiverName() string
  1860  pkg debug/gosym, method (Func) Static() bool
  1861  pkg debug/gosym, method (UnknownFileError) Error() string
  1862  pkg debug/gosym, type DecodingError struct
  1863  pkg debug/gosym, type Func struct
  1864  pkg debug/gosym, type Func struct, End uint64
  1865  pkg debug/gosym, type Func struct, Entry uint64
  1866  pkg debug/gosym, type Func struct, FrameSize int
  1867  pkg debug/gosym, type Func struct, LineTable *LineTable
  1868  pkg debug/gosym, type Func struct, Locals []*Sym
  1869  pkg debug/gosym, type Func struct, Obj *Obj
  1870  pkg debug/gosym, type Func struct, Params []*Sym
  1871  pkg debug/gosym, type Func struct, embedded *Sym
  1872  pkg debug/gosym, type LineTable struct
  1873  pkg debug/gosym, type LineTable struct, Data []uint8
  1874  pkg debug/gosym, type LineTable struct, Line int
  1875  pkg debug/gosym, type LineTable struct, PC uint64
  1876  pkg debug/gosym, type Obj struct
  1877  pkg debug/gosym, type Obj struct, Funcs []Func
  1878  pkg debug/gosym, type Obj struct, Paths []Sym
  1879  pkg debug/gosym, type Sym struct
  1880  pkg debug/gosym, type Sym struct, Func *Func
  1881  pkg debug/gosym, type Sym struct, GoType uint64
  1882  pkg debug/gosym, type Sym struct, Name string
  1883  pkg debug/gosym, type Sym struct, Type uint8
  1884  pkg debug/gosym, type Sym struct, Value uint64
  1885  pkg debug/gosym, type Table struct
  1886  pkg debug/gosym, type Table struct, Files map[string]*Obj
  1887  pkg debug/gosym, type Table struct, Funcs []Func
  1888  pkg debug/gosym, type Table struct, Objs []Obj
  1889  pkg debug/gosym, type Table struct, Syms []Sym
  1890  pkg debug/gosym, type UnknownFileError string
  1891  pkg debug/gosym, type UnknownLineError struct
  1892  pkg debug/gosym, type UnknownLineError struct, File string
  1893  pkg debug/gosym, type UnknownLineError struct, Line int
  1894  pkg debug/macho, const Cpu386 Cpu
  1895  pkg debug/macho, const CpuAmd64 Cpu
  1896  pkg debug/macho, const LoadCmdDylib LoadCmd
  1897  pkg debug/macho, const LoadCmdDylinker LoadCmd
  1898  pkg debug/macho, const LoadCmdDysymtab LoadCmd
  1899  pkg debug/macho, const LoadCmdSegment LoadCmd
  1900  pkg debug/macho, const LoadCmdSegment64 LoadCmd
  1901  pkg debug/macho, const LoadCmdSymtab LoadCmd
  1902  pkg debug/macho, const LoadCmdThread LoadCmd
  1903  pkg debug/macho, const LoadCmdUnixThread LoadCmd
  1904  pkg debug/macho, const Magic32 uint32
  1905  pkg debug/macho, const Magic64 uint32
  1906  pkg debug/macho, const TypeExec Type
  1907  pkg debug/macho, const TypeObj Type
  1908  pkg debug/macho, func NewFile(io.ReaderAt) (*File, error)
  1909  pkg debug/macho, func Open(string) (*File, error)
  1910  pkg debug/macho, method (*File) Close() error
  1911  pkg debug/macho, method (*File) DWARF() (*dwarf.Data, error)
  1912  pkg debug/macho, method (*File) ImportedLibraries() ([]string, error)
  1913  pkg debug/macho, method (*File) ImportedSymbols() ([]string, error)
  1914  pkg debug/macho, method (*File) Section(string) *Section
  1915  pkg debug/macho, method (*File) Segment(string) *Segment
  1916  pkg debug/macho, method (*FormatError) Error() string
  1917  pkg debug/macho, method (*Section) Data() ([]uint8, error)
  1918  pkg debug/macho, method (*Section) Open() io.ReadSeeker
  1919  pkg debug/macho, method (*Segment) Data() ([]uint8, error)
  1920  pkg debug/macho, method (*Segment) Open() io.ReadSeeker
  1921  pkg debug/macho, method (Cpu) GoString() string
  1922  pkg debug/macho, method (Cpu) String() string
  1923  pkg debug/macho, method (Dylib) Raw() []uint8
  1924  pkg debug/macho, method (Dysymtab) Raw() []uint8
  1925  pkg debug/macho, method (LoadBytes) Raw() []uint8
  1926  pkg debug/macho, method (LoadCmd) GoString() string
  1927  pkg debug/macho, method (LoadCmd) String() string
  1928  pkg debug/macho, method (Section) ReadAt([]uint8, int64) (int, error)
  1929  pkg debug/macho, method (Segment) Raw() []uint8
  1930  pkg debug/macho, method (Segment) ReadAt([]uint8, int64) (int, error)
  1931  pkg debug/macho, method (Symtab) Raw() []uint8
  1932  pkg debug/macho, type Cpu uint32
  1933  pkg debug/macho, type Dylib struct
  1934  pkg debug/macho, type Dylib struct, CompatVersion uint32
  1935  pkg debug/macho, type Dylib struct, CurrentVersion uint32
  1936  pkg debug/macho, type Dylib struct, Name string
  1937  pkg debug/macho, type Dylib struct, Time uint32
  1938  pkg debug/macho, type Dylib struct, embedded LoadBytes
  1939  pkg debug/macho, type DylibCmd struct
  1940  pkg debug/macho, type DylibCmd struct, Cmd LoadCmd
  1941  pkg debug/macho, type DylibCmd struct, CompatVersion uint32
  1942  pkg debug/macho, type DylibCmd struct, CurrentVersion uint32
  1943  pkg debug/macho, type DylibCmd struct, Len uint32
  1944  pkg debug/macho, type DylibCmd struct, Name uint32
  1945  pkg debug/macho, type DylibCmd struct, Time uint32
  1946  pkg debug/macho, type Dysymtab struct
  1947  pkg debug/macho, type Dysymtab struct, IndirectSyms []uint32
  1948  pkg debug/macho, type Dysymtab struct, embedded DysymtabCmd
  1949  pkg debug/macho, type Dysymtab struct, embedded LoadBytes
  1950  pkg debug/macho, type DysymtabCmd struct
  1951  pkg debug/macho, type DysymtabCmd struct, Cmd LoadCmd
  1952  pkg debug/macho, type DysymtabCmd struct, Extrefsymoff uint32
  1953  pkg debug/macho, type DysymtabCmd struct, Extreloff uint32
  1954  pkg debug/macho, type DysymtabCmd struct, Iextdefsym uint32
  1955  pkg debug/macho, type DysymtabCmd struct, Ilocalsym uint32
  1956  pkg debug/macho, type DysymtabCmd struct, Indirectsymoff uint32
  1957  pkg debug/macho, type DysymtabCmd struct, Iundefsym uint32
  1958  pkg debug/macho, type DysymtabCmd struct, Len uint32
  1959  pkg debug/macho, type DysymtabCmd struct, Locreloff uint32
  1960  pkg debug/macho, type DysymtabCmd struct, Modtaboff uint32
  1961  pkg debug/macho, type DysymtabCmd struct, Nextdefsym uint32
  1962  pkg debug/macho, type DysymtabCmd struct, Nextrefsyms uint32
  1963  pkg debug/macho, type DysymtabCmd struct, Nextrel uint32
  1964  pkg debug/macho, type DysymtabCmd struct, Nindirectsyms uint32
  1965  pkg debug/macho, type DysymtabCmd struct, Nlocalsym uint32
  1966  pkg debug/macho, type DysymtabCmd struct, Nlocrel uint32
  1967  pkg debug/macho, type DysymtabCmd struct, Nmodtab uint32
  1968  pkg debug/macho, type DysymtabCmd struct, Ntoc uint32
  1969  pkg debug/macho, type DysymtabCmd struct, Nundefsym uint32
  1970  pkg debug/macho, type DysymtabCmd struct, Tocoffset uint32
  1971  pkg debug/macho, type File struct
  1972  pkg debug/macho, type File struct, ByteOrder binary.ByteOrder
  1973  pkg debug/macho, type File struct, Dysymtab *Dysymtab
  1974  pkg debug/macho, type File struct, Loads []Load
  1975  pkg debug/macho, type File struct, Sections []*Section
  1976  pkg debug/macho, type File struct, Symtab *Symtab
  1977  pkg debug/macho, type File struct, embedded FileHeader
  1978  pkg debug/macho, type FileHeader struct
  1979  pkg debug/macho, type FileHeader struct, Cmdsz uint32
  1980  pkg debug/macho, type FileHeader struct, Cpu Cpu
  1981  pkg debug/macho, type FileHeader struct, Flags uint32
  1982  pkg debug/macho, type FileHeader struct, Magic uint32
  1983  pkg debug/macho, type FileHeader struct, Ncmd uint32
  1984  pkg debug/macho, type FileHeader struct, SubCpu uint32
  1985  pkg debug/macho, type FileHeader struct, Type Type
  1986  pkg debug/macho, type FormatError struct
  1987  pkg debug/macho, type Load interface { Raw }
  1988  pkg debug/macho, type Load interface, Raw() []uint8
  1989  pkg debug/macho, type LoadBytes []uint8
  1990  pkg debug/macho, type LoadCmd uint32
  1991  pkg debug/macho, type Nlist32 struct
  1992  pkg debug/macho, type Nlist32 struct, Desc uint16
  1993  pkg debug/macho, type Nlist32 struct, Name uint32
  1994  pkg debug/macho, type Nlist32 struct, Sect uint8
  1995  pkg debug/macho, type Nlist32 struct, Type uint8
  1996  pkg debug/macho, type Nlist32 struct, Value uint32
  1997  pkg debug/macho, type Nlist64 struct
  1998  pkg debug/macho, type Nlist64 struct, Desc uint16
  1999  pkg debug/macho, type Nlist64 struct, Name uint32
  2000  pkg debug/macho, type Nlist64 struct, Sect uint8
  2001  pkg debug/macho, type Nlist64 struct, Type uint8
  2002  pkg debug/macho, type Nlist64 struct, Value uint64
  2003  pkg debug/macho, type Regs386 struct
  2004  pkg debug/macho, type Regs386 struct, AX uint32
  2005  pkg debug/macho, type Regs386 struct, BP uint32
  2006  pkg debug/macho, type Regs386 struct, BX uint32
  2007  pkg debug/macho, type Regs386 struct, CS uint32
  2008  pkg debug/macho, type Regs386 struct, CX uint32
  2009  pkg debug/macho, type Regs386 struct, DI uint32
  2010  pkg debug/macho, type Regs386 struct, DS uint32
  2011  pkg debug/macho, type Regs386 struct, DX uint32
  2012  pkg debug/macho, type Regs386 struct, ES uint32
  2013  pkg debug/macho, type Regs386 struct, FLAGS uint32
  2014  pkg debug/macho, type Regs386 struct, FS uint32
  2015  pkg debug/macho, type Regs386 struct, GS uint32
  2016  pkg debug/macho, type Regs386 struct, IP uint32
  2017  pkg debug/macho, type Regs386 struct, SI uint32
  2018  pkg debug/macho, type Regs386 struct, SP uint32
  2019  pkg debug/macho, type Regs386 struct, SS uint32
  2020  pkg debug/macho, type RegsAMD64 struct
  2021  pkg debug/macho, type RegsAMD64 struct, AX uint64
  2022  pkg debug/macho, type RegsAMD64 struct, BP uint64
  2023  pkg debug/macho, type RegsAMD64 struct, BX uint64
  2024  pkg debug/macho, type RegsAMD64 struct, CS uint64
  2025  pkg debug/macho, type RegsAMD64 struct, CX uint64
  2026  pkg debug/macho, type RegsAMD64 struct, DI uint64
  2027  pkg debug/macho, type RegsAMD64 struct, DX uint64
  2028  pkg debug/macho, type RegsAMD64 struct, FLAGS uint64
  2029  pkg debug/macho, type RegsAMD64 struct, FS uint64
  2030  pkg debug/macho, type RegsAMD64 struct, GS uint64
  2031  pkg debug/macho, type RegsAMD64 struct, IP uint64
  2032  pkg debug/macho, type RegsAMD64 struct, R10 uint64
  2033  pkg debug/macho, type RegsAMD64 struct, R11 uint64
  2034  pkg debug/macho, type RegsAMD64 struct, R12 uint64
  2035  pkg debug/macho, type RegsAMD64 struct, R13 uint64
  2036  pkg debug/macho, type RegsAMD64 struct, R14 uint64
  2037  pkg debug/macho, type RegsAMD64 struct, R15 uint64
  2038  pkg debug/macho, type RegsAMD64 struct, R8 uint64
  2039  pkg debug/macho, type RegsAMD64 struct, R9 uint64
  2040  pkg debug/macho, type RegsAMD64 struct, SI uint64
  2041  pkg debug/macho, type RegsAMD64 struct, SP uint64
  2042  pkg debug/macho, type Section struct
  2043  pkg debug/macho, type Section struct, embedded SectionHeader
  2044  pkg debug/macho, type Section struct, embedded io.ReaderAt
  2045  pkg debug/macho, type Section32 struct
  2046  pkg debug/macho, type Section32 struct, Addr uint32
  2047  pkg debug/macho, type Section32 struct, Align uint32
  2048  pkg debug/macho, type Section32 struct, Flags uint32
  2049  pkg debug/macho, type Section32 struct, Name [16]uint8
  2050  pkg debug/macho, type Section32 struct, Nreloc uint32
  2051  pkg debug/macho, type Section32 struct, Offset uint32
  2052  pkg debug/macho, type Section32 struct, Reloff uint32
  2053  pkg debug/macho, type Section32 struct, Reserve1 uint32
  2054  pkg debug/macho, type Section32 struct, Reserve2 uint32
  2055  pkg debug/macho, type Section32 struct, Seg [16]uint8
  2056  pkg debug/macho, type Section32 struct, Size uint32
  2057  pkg debug/macho, type Section64 struct
  2058  pkg debug/macho, type Section64 struct, Addr uint64
  2059  pkg debug/macho, type Section64 struct, Align uint32
  2060  pkg debug/macho, type Section64 struct, Flags uint32
  2061  pkg debug/macho, type Section64 struct, Name [16]uint8
  2062  pkg debug/macho, type Section64 struct, Nreloc uint32
  2063  pkg debug/macho, type Section64 struct, Offset uint32
  2064  pkg debug/macho, type Section64 struct, Reloff uint32
  2065  pkg debug/macho, type Section64 struct, Reserve1 uint32
  2066  pkg debug/macho, type Section64 struct, Reserve2 uint32
  2067  pkg debug/macho, type Section64 struct, Reserve3 uint32
  2068  pkg debug/macho, type Section64 struct, Seg [16]uint8
  2069  pkg debug/macho, type Section64 struct, Size uint64
  2070  pkg debug/macho, type SectionHeader struct
  2071  pkg debug/macho, type SectionHeader struct, Addr uint64
  2072  pkg debug/macho, type SectionHeader struct, Align uint32
  2073  pkg debug/macho, type SectionHeader struct, Flags uint32
  2074  pkg debug/macho, type SectionHeader struct, Name string
  2075  pkg debug/macho, type SectionHeader struct, Nreloc uint32
  2076  pkg debug/macho, type SectionHeader struct, Offset uint32
  2077  pkg debug/macho, type SectionHeader struct, Reloff uint32
  2078  pkg debug/macho, type SectionHeader struct, Seg string
  2079  pkg debug/macho, type SectionHeader struct, Size uint64
  2080  pkg debug/macho, type Segment struct
  2081  pkg debug/macho, type Segment struct, embedded LoadBytes
  2082  pkg debug/macho, type Segment struct, embedded SegmentHeader
  2083  pkg debug/macho, type Segment struct, embedded io.ReaderAt
  2084  pkg debug/macho, type Segment32 struct
  2085  pkg debug/macho, type Segment32 struct, Addr uint32
  2086  pkg debug/macho, type Segment32 struct, Cmd LoadCmd
  2087  pkg debug/macho, type Segment32 struct, Filesz uint32
  2088  pkg debug/macho, type Segment32 struct, Flag uint32
  2089  pkg debug/macho, type Segment32 struct, Len uint32
  2090  pkg debug/macho, type Segment32 struct, Maxprot uint32
  2091  pkg debug/macho, type Segment32 struct, Memsz uint32
  2092  pkg debug/macho, type Segment32 struct, Name [16]uint8
  2093  pkg debug/macho, type Segment32 struct, Nsect uint32
  2094  pkg debug/macho, type Segment32 struct, Offset uint32
  2095  pkg debug/macho, type Segment32 struct, Prot uint32
  2096  pkg debug/macho, type Segment64 struct
  2097  pkg debug/macho, type Segment64 struct, Addr uint64
  2098  pkg debug/macho, type Segment64 struct, Cmd LoadCmd
  2099  pkg debug/macho, type Segment64 struct, Filesz uint64
  2100  pkg debug/macho, type Segment64 struct, Flag uint32
  2101  pkg debug/macho, type Segment64 struct, Len uint32
  2102  pkg debug/macho, type Segment64 struct, Maxprot uint32
  2103  pkg debug/macho, type Segment64 struct, Memsz uint64
  2104  pkg debug/macho, type Segment64 struct, Name [16]uint8
  2105  pkg debug/macho, type Segment64 struct, Nsect uint32
  2106  pkg debug/macho, type Segment64 struct, Offset uint64
  2107  pkg debug/macho, type Segment64 struct, Prot uint32
  2108  pkg debug/macho, type SegmentHeader struct
  2109  pkg debug/macho, type SegmentHeader struct, Addr uint64
  2110  pkg debug/macho, type SegmentHeader struct, Cmd LoadCmd
  2111  pkg debug/macho, type SegmentHeader struct, Filesz uint64
  2112  pkg debug/macho, type SegmentHeader struct, Flag uint32
  2113  pkg debug/macho, type SegmentHeader struct, Len uint32
  2114  pkg debug/macho, type SegmentHeader struct, Maxprot uint32
  2115  pkg debug/macho, type SegmentHeader struct, Memsz uint64
  2116  pkg debug/macho, type SegmentHeader struct, Name string
  2117  pkg debug/macho, type SegmentHeader struct, Nsect uint32
  2118  pkg debug/macho, type SegmentHeader struct, Offset uint64
  2119  pkg debug/macho, type SegmentHeader struct, Prot uint32
  2120  pkg debug/macho, type Symbol struct
  2121  pkg debug/macho, type Symbol struct, Desc uint16
  2122  pkg debug/macho, type Symbol struct, Name string
  2123  pkg debug/macho, type Symbol struct, Sect uint8
  2124  pkg debug/macho, type Symbol struct, Type uint8
  2125  pkg debug/macho, type Symbol struct, Value uint64
  2126  pkg debug/macho, type Symtab struct
  2127  pkg debug/macho, type Symtab struct, Syms []Symbol
  2128  pkg debug/macho, type Symtab struct, embedded LoadBytes
  2129  pkg debug/macho, type Symtab struct, embedded SymtabCmd
  2130  pkg debug/macho, type SymtabCmd struct
  2131  pkg debug/macho, type SymtabCmd struct, Cmd LoadCmd
  2132  pkg debug/macho, type SymtabCmd struct, Len uint32
  2133  pkg debug/macho, type SymtabCmd struct, Nsyms uint32
  2134  pkg debug/macho, type SymtabCmd struct, Stroff uint32
  2135  pkg debug/macho, type SymtabCmd struct, Strsize uint32
  2136  pkg debug/macho, type SymtabCmd struct, Symoff uint32
  2137  pkg debug/macho, type Thread struct
  2138  pkg debug/macho, type Thread struct, Cmd LoadCmd
  2139  pkg debug/macho, type Thread struct, Data []uint32
  2140  pkg debug/macho, type Thread struct, Len uint32
  2141  pkg debug/macho, type Thread struct, Type uint32
  2142  pkg debug/macho, type Type uint32
  2143  pkg debug/pe, const IMAGE_FILE_MACHINE_AM33 ideal-int
  2144  pkg debug/pe, const IMAGE_FILE_MACHINE_AMD64 ideal-int
  2145  pkg debug/pe, const IMAGE_FILE_MACHINE_ARM ideal-int
  2146  pkg debug/pe, const IMAGE_FILE_MACHINE_EBC ideal-int
  2147  pkg debug/pe, const IMAGE_FILE_MACHINE_I386 ideal-int
  2148  pkg debug/pe, const IMAGE_FILE_MACHINE_IA64 ideal-int
  2149  pkg debug/pe, const IMAGE_FILE_MACHINE_M32R ideal-int
  2150  pkg debug/pe, const IMAGE_FILE_MACHINE_MIPS16 ideal-int
  2151  pkg debug/pe, const IMAGE_FILE_MACHINE_MIPSFPU ideal-int
  2152  pkg debug/pe, const IMAGE_FILE_MACHINE_MIPSFPU16 ideal-int
  2153  pkg debug/pe, const IMAGE_FILE_MACHINE_POWERPC ideal-int
  2154  pkg debug/pe, const IMAGE_FILE_MACHINE_POWERPCFP ideal-int
  2155  pkg debug/pe, const IMAGE_FILE_MACHINE_R4000 ideal-int
  2156  pkg debug/pe, const IMAGE_FILE_MACHINE_SH3 ideal-int
  2157  pkg debug/pe, const IMAGE_FILE_MACHINE_SH3DSP ideal-int
  2158  pkg debug/pe, const IMAGE_FILE_MACHINE_SH4 ideal-int
  2159  pkg debug/pe, const IMAGE_FILE_MACHINE_SH5 ideal-int
  2160  pkg debug/pe, const IMAGE_FILE_MACHINE_THUMB ideal-int
  2161  pkg debug/pe, const IMAGE_FILE_MACHINE_UNKNOWN ideal-int
  2162  pkg debug/pe, const IMAGE_FILE_MACHINE_WCEMIPSV2 ideal-int
  2163  pkg debug/pe, func NewFile(io.ReaderAt) (*File, error)
  2164  pkg debug/pe, func Open(string) (*File, error)
  2165  pkg debug/pe, method (*File) Close() error
  2166  pkg debug/pe, method (*File) DWARF() (*dwarf.Data, error)
  2167  pkg debug/pe, method (*File) ImportedLibraries() ([]string, error)
  2168  pkg debug/pe, method (*File) ImportedSymbols() ([]string, error)
  2169  pkg debug/pe, method (*File) Section(string) *Section
  2170  pkg debug/pe, method (*FormatError) Error() string
  2171  pkg debug/pe, method (*Section) Data() ([]uint8, error)
  2172  pkg debug/pe, method (*Section) Open() io.ReadSeeker
  2173  pkg debug/pe, method (Section) ReadAt([]uint8, int64) (int, error)
  2174  pkg debug/pe, type File struct
  2175  pkg debug/pe, type File struct, Sections []*Section
  2176  pkg debug/pe, type File struct, embedded FileHeader
  2177  pkg debug/pe, type FileHeader struct
  2178  pkg debug/pe, type FileHeader struct, Characteristics uint16
  2179  pkg debug/pe, type FileHeader struct, Machine uint16
  2180  pkg debug/pe, type FileHeader struct, NumberOfSections uint16
  2181  pkg debug/pe, type FileHeader struct, NumberOfSymbols uint32
  2182  pkg debug/pe, type FileHeader struct, PointerToSymbolTable uint32
  2183  pkg debug/pe, type FileHeader struct, SizeOfOptionalHeader uint16
  2184  pkg debug/pe, type FileHeader struct, TimeDateStamp uint32
  2185  pkg debug/pe, type FormatError struct
  2186  pkg debug/pe, type ImportDirectory struct
  2187  pkg debug/pe, type ImportDirectory struct, FirstThunk uint32
  2188  pkg debug/pe, type ImportDirectory struct, ForwarderChain uint32
  2189  pkg debug/pe, type ImportDirectory struct, Name uint32
  2190  pkg debug/pe, type ImportDirectory struct, OriginalFirstThunk uint32
  2191  pkg debug/pe, type ImportDirectory struct, TimeDateStamp uint32
  2192  pkg debug/pe, type Section struct
  2193  pkg debug/pe, type Section struct, embedded SectionHeader
  2194  pkg debug/pe, type Section struct, embedded io.ReaderAt
  2195  pkg debug/pe, type SectionHeader struct
  2196  pkg debug/pe, type SectionHeader struct, Characteristics uint32
  2197  pkg debug/pe, type SectionHeader struct, Name string
  2198  pkg debug/pe, type SectionHeader struct, NumberOfLineNumbers uint16
  2199  pkg debug/pe, type SectionHeader struct, NumberOfRelocations uint16
  2200  pkg debug/pe, type SectionHeader struct, Offset uint32
  2201  pkg debug/pe, type SectionHeader struct, PointerToLineNumbers uint32
  2202  pkg debug/pe, type SectionHeader struct, PointerToRelocations uint32
  2203  pkg debug/pe, type SectionHeader struct, Size uint32
  2204  pkg debug/pe, type SectionHeader struct, VirtualAddress uint32
  2205  pkg debug/pe, type SectionHeader struct, VirtualSize uint32
  2206  pkg debug/pe, type SectionHeader32 struct
  2207  pkg debug/pe, type SectionHeader32 struct, Characteristics uint32
  2208  pkg debug/pe, type SectionHeader32 struct, Name [8]uint8
  2209  pkg debug/pe, type SectionHeader32 struct, NumberOfLineNumbers uint16
  2210  pkg debug/pe, type SectionHeader32 struct, NumberOfRelocations uint16
  2211  pkg debug/pe, type SectionHeader32 struct, PointerToLineNumbers uint32
  2212  pkg debug/pe, type SectionHeader32 struct, PointerToRawData uint32
  2213  pkg debug/pe, type SectionHeader32 struct, PointerToRelocations uint32
  2214  pkg debug/pe, type SectionHeader32 struct, SizeOfRawData uint32
  2215  pkg debug/pe, type SectionHeader32 struct, VirtualAddress uint32
  2216  pkg debug/pe, type SectionHeader32 struct, VirtualSize uint32
  2217  pkg encoding/ascii85, func Decode([]uint8, []uint8, bool) (int, int, error)
  2218  pkg encoding/ascii85, func Encode([]uint8, []uint8) int
  2219  pkg encoding/ascii85, func MaxEncodedLen(int) int
  2220  pkg encoding/ascii85, func NewDecoder(io.Reader) io.Reader
  2221  pkg encoding/ascii85, func NewEncoder(io.Writer) io.WriteCloser
  2222  pkg encoding/ascii85, method (CorruptInputError) Error() string
  2223  pkg encoding/ascii85, type CorruptInputError int64
  2224  pkg encoding/asn1, func Marshal(interface{}) ([]uint8, error)
  2225  pkg encoding/asn1, func Unmarshal([]uint8, interface{}) ([]uint8, error)
  2226  pkg encoding/asn1, func UnmarshalWithParams([]uint8, interface{}, string) ([]uint8, error)
  2227  pkg encoding/asn1, method (BitString) At(int) int
  2228  pkg encoding/asn1, method (BitString) RightAlign() []uint8
  2229  pkg encoding/asn1, method (ObjectIdentifier) Equal(ObjectIdentifier) bool
  2230  pkg encoding/asn1, method (StructuralError) Error() string
  2231  pkg encoding/asn1, method (SyntaxError) Error() string
  2232  pkg encoding/asn1, type BitString struct
  2233  pkg encoding/asn1, type BitString struct, BitLength int
  2234  pkg encoding/asn1, type BitString struct, Bytes []uint8
  2235  pkg encoding/asn1, type Enumerated int
  2236  pkg encoding/asn1, type Flag bool
  2237  pkg encoding/asn1, type ObjectIdentifier []int
  2238  pkg encoding/asn1, type RawContent []uint8
  2239  pkg encoding/asn1, type RawValue struct
  2240  pkg encoding/asn1, type RawValue struct, Bytes []uint8
  2241  pkg encoding/asn1, type RawValue struct, Class int
  2242  pkg encoding/asn1, type RawValue struct, FullBytes []uint8
  2243  pkg encoding/asn1, type RawValue struct, IsCompound bool
  2244  pkg encoding/asn1, type RawValue struct, Tag int
  2245  pkg encoding/asn1, type StructuralError struct
  2246  pkg encoding/asn1, type StructuralError struct, Msg string
  2247  pkg encoding/asn1, type SyntaxError struct
  2248  pkg encoding/asn1, type SyntaxError struct, Msg string
  2249  pkg encoding/base32, func NewDecoder(*Encoding, io.Reader) io.Reader
  2250  pkg encoding/base32, func NewEncoder(*Encoding, io.Writer) io.WriteCloser
  2251  pkg encoding/base32, func NewEncoding(string) *Encoding
  2252  pkg encoding/base32, method (*Encoding) Decode([]uint8, []uint8) (int, error)
  2253  pkg encoding/base32, method (*Encoding) DecodeString(string) ([]uint8, error)
  2254  pkg encoding/base32, method (*Encoding) DecodedLen(int) int
  2255  pkg encoding/base32, method (*Encoding) Encode([]uint8, []uint8)
  2256  pkg encoding/base32, method (*Encoding) EncodeToString([]uint8) string
  2257  pkg encoding/base32, method (*Encoding) EncodedLen(int) int
  2258  pkg encoding/base32, method (CorruptInputError) Error() string
  2259  pkg encoding/base32, type CorruptInputError int64
  2260  pkg encoding/base32, type Encoding struct
  2261  pkg encoding/base32, var HexEncoding *Encoding
  2262  pkg encoding/base32, var StdEncoding *Encoding
  2263  pkg encoding/base64, func NewDecoder(*Encoding, io.Reader) io.Reader
  2264  pkg encoding/base64, func NewEncoder(*Encoding, io.Writer) io.WriteCloser
  2265  pkg encoding/base64, func NewEncoding(string) *Encoding
  2266  pkg encoding/base64, method (*Encoding) Decode([]uint8, []uint8) (int, error)
  2267  pkg encoding/base64, method (*Encoding) DecodeString(string) ([]uint8, error)
  2268  pkg encoding/base64, method (*Encoding) DecodedLen(int) int
  2269  pkg encoding/base64, method (*Encoding) Encode([]uint8, []uint8)
  2270  pkg encoding/base64, method (*Encoding) EncodeToString([]uint8) string
  2271  pkg encoding/base64, method (*Encoding) EncodedLen(int) int
  2272  pkg encoding/base64, method (CorruptInputError) Error() string
  2273  pkg encoding/base64, type CorruptInputError int64
  2274  pkg encoding/base64, type Encoding struct
  2275  pkg encoding/base64, var StdEncoding *Encoding
  2276  pkg encoding/base64, var URLEncoding *Encoding
  2277  pkg encoding/binary, const MaxVarintLen16 ideal-int
  2278  pkg encoding/binary, const MaxVarintLen32 ideal-int
  2279  pkg encoding/binary, const MaxVarintLen64 ideal-int
  2280  pkg encoding/binary, func PutUvarint([]uint8, uint64) int
  2281  pkg encoding/binary, func PutVarint([]uint8, int64) int
  2282  pkg encoding/binary, func Read(io.Reader, ByteOrder, interface{}) error
  2283  pkg encoding/binary, func ReadUvarint(io.ByteReader) (uint64, error)
  2284  pkg encoding/binary, func ReadVarint(io.ByteReader) (int64, error)
  2285  pkg encoding/binary, func Size(interface{}) int
  2286  pkg encoding/binary, func Uvarint([]uint8) (uint64, int)
  2287  pkg encoding/binary, func Varint([]uint8) (int64, int)
  2288  pkg encoding/binary, func Write(io.Writer, ByteOrder, interface{}) error
  2289  pkg encoding/binary, type ByteOrder interface { PutUint16, PutUint32, PutUint64, String, Uint16, Uint32, Uint64 }
  2290  pkg encoding/binary, type ByteOrder interface, PutUint16([]uint8, uint16)
  2291  pkg encoding/binary, type ByteOrder interface, PutUint32([]uint8, uint32)
  2292  pkg encoding/binary, type ByteOrder interface, PutUint64([]uint8, uint64)
  2293  pkg encoding/binary, type ByteOrder interface, String() string
  2294  pkg encoding/binary, type ByteOrder interface, Uint16([]uint8) uint16
  2295  pkg encoding/binary, type ByteOrder interface, Uint32([]uint8) uint32
  2296  pkg encoding/binary, type ByteOrder interface, Uint64([]uint8) uint64
  2297  pkg encoding/binary, var BigEndian bigEndian
  2298  pkg encoding/binary, var LittleEndian littleEndian
  2299  pkg encoding/csv, func NewReader(io.Reader) *Reader
  2300  pkg encoding/csv, func NewWriter(io.Writer) *Writer
  2301  pkg encoding/csv, method (*ParseError) Error() string
  2302  pkg encoding/csv, method (*Reader) Read() ([]string, error)
  2303  pkg encoding/csv, method (*Reader) ReadAll() ([][]string, error)
  2304  pkg encoding/csv, method (*Writer) Flush()
  2305  pkg encoding/csv, method (*Writer) Write([]string) error
  2306  pkg encoding/csv, method (*Writer) WriteAll([][]string) error
  2307  pkg encoding/csv, type ParseError struct
  2308  pkg encoding/csv, type ParseError struct, Column int
  2309  pkg encoding/csv, type ParseError struct, Err error
  2310  pkg encoding/csv, type ParseError struct, Line int
  2311  pkg encoding/csv, type Reader struct
  2312  pkg encoding/csv, type Reader struct, Comma int32
  2313  pkg encoding/csv, type Reader struct, Comment int32
  2314  pkg encoding/csv, type Reader struct, FieldsPerRecord int
  2315  pkg encoding/csv, type Reader struct, LazyQuotes bool
  2316  pkg encoding/csv, type Reader struct, TrailingComma bool
  2317  pkg encoding/csv, type Reader struct, TrimLeadingSpace bool
  2318  pkg encoding/csv, type Writer struct
  2319  pkg encoding/csv, type Writer struct, Comma int32
  2320  pkg encoding/csv, type Writer struct, UseCRLF bool
  2321  pkg encoding/csv, var ErrBareQuote error
  2322  pkg encoding/csv, var ErrFieldCount error
  2323  pkg encoding/csv, var ErrQuote error
  2324  pkg encoding/csv, var ErrTrailingComma error
  2325  pkg encoding/gob, func NewDecoder(io.Reader) *Decoder
  2326  pkg encoding/gob, func NewEncoder(io.Writer) *Encoder
  2327  pkg encoding/gob, func Register(interface{})
  2328  pkg encoding/gob, func RegisterName(string, interface{})
  2329  pkg encoding/gob, method (*Decoder) Decode(interface{}) error
  2330  pkg encoding/gob, method (*Decoder) DecodeValue(reflect.Value) error
  2331  pkg encoding/gob, method (*Encoder) Encode(interface{}) error
  2332  pkg encoding/gob, method (*Encoder) EncodeValue(reflect.Value) error
  2333  pkg encoding/gob, type CommonType struct
  2334  pkg encoding/gob, type CommonType struct, Id typeId
  2335  pkg encoding/gob, type CommonType struct, Name string
  2336  pkg encoding/gob, type Decoder struct
  2337  pkg encoding/gob, type Encoder struct
  2338  pkg encoding/gob, type GobDecoder interface { GobDecode }
  2339  pkg encoding/gob, type GobDecoder interface, GobDecode([]uint8) error
  2340  pkg encoding/gob, type GobEncoder interface { GobEncode }
  2341  pkg encoding/gob, type GobEncoder interface, GobEncode() ([]uint8, error)
  2342  pkg encoding/hex, func Decode([]uint8, []uint8) (int, error)
  2343  pkg encoding/hex, func DecodeString(string) ([]uint8, error)
  2344  pkg encoding/hex, func DecodedLen(int) int
  2345  pkg encoding/hex, func Dump([]uint8) string
  2346  pkg encoding/hex, func Dumper(io.Writer) io.WriteCloser
  2347  pkg encoding/hex, func Encode([]uint8, []uint8) int
  2348  pkg encoding/hex, func EncodeToString([]uint8) string
  2349  pkg encoding/hex, func EncodedLen(int) int
  2350  pkg encoding/hex, method (InvalidByteError) Error() string
  2351  pkg encoding/hex, type InvalidByteError uint8
  2352  pkg encoding/hex, var ErrLength error
  2353  pkg encoding/json, func Compact(*bytes.Buffer, []uint8) error
  2354  pkg encoding/json, func HTMLEscape(*bytes.Buffer, []uint8)
  2355  pkg encoding/json, func Indent(*bytes.Buffer, []uint8, string, string) error
  2356  pkg encoding/json, func Marshal(interface{}) ([]uint8, error)
  2357  pkg encoding/json, func MarshalIndent(interface{}, string, string) ([]uint8, error)
  2358  pkg encoding/json, func NewDecoder(io.Reader) *Decoder
  2359  pkg encoding/json, func NewEncoder(io.Writer) *Encoder
  2360  pkg encoding/json, func Unmarshal([]uint8, interface{}) error
  2361  pkg encoding/json, method (*Decoder) Decode(interface{}) error
  2362  pkg encoding/json, method (*Encoder) Encode(interface{}) error
  2363  pkg encoding/json, method (*InvalidUTF8Error) Error() string
  2364  pkg encoding/json, method (*InvalidUnmarshalError) Error() string
  2365  pkg encoding/json, method (*MarshalerError) Error() string
  2366  pkg encoding/json, method (*RawMessage) MarshalJSON() ([]uint8, error)
  2367  pkg encoding/json, method (*RawMessage) UnmarshalJSON([]uint8) error
  2368  pkg encoding/json, method (*SyntaxError) Error() string
  2369  pkg encoding/json, method (*UnmarshalFieldError) Error() string
  2370  pkg encoding/json, method (*UnmarshalTypeError) Error() string
  2371  pkg encoding/json, method (*UnsupportedTypeError) Error() string
  2372  pkg encoding/json, method (*UnsupportedValueError) Error() string
  2373  pkg encoding/json, type Decoder struct
  2374  pkg encoding/json, type Encoder struct
  2375  pkg encoding/json, type InvalidUTF8Error struct
  2376  pkg encoding/json, type InvalidUTF8Error struct, S string
  2377  pkg encoding/json, type InvalidUnmarshalError struct
  2378  pkg encoding/json, type InvalidUnmarshalError struct, Type reflect.Type
  2379  pkg encoding/json, type Marshaler interface { MarshalJSON }
  2380  pkg encoding/json, type Marshaler interface, MarshalJSON() ([]uint8, error)
  2381  pkg encoding/json, type MarshalerError struct
  2382  pkg encoding/json, type MarshalerError struct, Err error
  2383  pkg encoding/json, type MarshalerError struct, Type reflect.Type
  2384  pkg encoding/json, type RawMessage []uint8
  2385  pkg encoding/json, type SyntaxError struct
  2386  pkg encoding/json, type SyntaxError struct, Offset int64
  2387  pkg encoding/json, type UnmarshalFieldError struct
  2388  pkg encoding/json, type UnmarshalFieldError struct, Field reflect.StructField
  2389  pkg encoding/json, type UnmarshalFieldError struct, Key string
  2390  pkg encoding/json, type UnmarshalFieldError struct, Type reflect.Type
  2391  pkg encoding/json, type UnmarshalTypeError struct
  2392  pkg encoding/json, type UnmarshalTypeError struct, Type reflect.Type
  2393  pkg encoding/json, type UnmarshalTypeError struct, Value string
  2394  pkg encoding/json, type Unmarshaler interface { UnmarshalJSON }
  2395  pkg encoding/json, type Unmarshaler interface, UnmarshalJSON([]uint8) error
  2396  pkg encoding/json, type UnsupportedTypeError struct
  2397  pkg encoding/json, type UnsupportedTypeError struct, Type reflect.Type
  2398  pkg encoding/json, type UnsupportedValueError struct
  2399  pkg encoding/json, type UnsupportedValueError struct, Str string
  2400  pkg encoding/json, type UnsupportedValueError struct, Value reflect.Value
  2401  pkg encoding/pem, func Decode([]uint8) (*Block, []uint8)
  2402  pkg encoding/pem, func Encode(io.Writer, *Block) error
  2403  pkg encoding/pem, func EncodeToMemory(*Block) []uint8
  2404  pkg encoding/pem, type Block struct
  2405  pkg encoding/pem, type Block struct, Bytes []uint8
  2406  pkg encoding/pem, type Block struct, Headers map[string]string
  2407  pkg encoding/pem, type Block struct, Type string
  2408  pkg encoding/xml, const Header ideal-string
  2409  pkg encoding/xml, func CopyToken(Token) Token
  2410  pkg encoding/xml, func Escape(io.Writer, []uint8)
  2411  pkg encoding/xml, func Marshal(interface{}) ([]uint8, error)
  2412  pkg encoding/xml, func MarshalIndent(interface{}, string, string) ([]uint8, error)
  2413  pkg encoding/xml, func NewDecoder(io.Reader) *Decoder
  2414  pkg encoding/xml, func NewEncoder(io.Writer) *Encoder
  2415  pkg encoding/xml, func Unmarshal([]uint8, interface{}) error
  2416  pkg encoding/xml, method (*Decoder) Decode(interface{}) error
  2417  pkg encoding/xml, method (*Decoder) DecodeElement(interface{}, *StartElement) error
  2418  pkg encoding/xml, method (*Decoder) RawToken() (Token, error)
  2419  pkg encoding/xml, method (*Decoder) Skip() error
  2420  pkg encoding/xml, method (*Decoder) Token() (Token, error)
  2421  pkg encoding/xml, method (*Encoder) Encode(interface{}) error
  2422  pkg encoding/xml, method (*SyntaxError) Error() string
  2423  pkg encoding/xml, method (*TagPathError) Error() string
  2424  pkg encoding/xml, method (*UnsupportedTypeError) Error() string
  2425  pkg encoding/xml, method (CharData) Copy() CharData
  2426  pkg encoding/xml, method (Comment) Copy() Comment
  2427  pkg encoding/xml, method (Directive) Copy() Directive
  2428  pkg encoding/xml, method (ProcInst) Copy() ProcInst
  2429  pkg encoding/xml, method (StartElement) Copy() StartElement
  2430  pkg encoding/xml, method (UnmarshalError) Error() string
  2431  pkg encoding/xml, type Attr struct
  2432  pkg encoding/xml, type Attr struct, Name Name
  2433  pkg encoding/xml, type Attr struct, Value string
  2434  pkg encoding/xml, type CharData []uint8
  2435  pkg encoding/xml, type Comment []uint8
  2436  pkg encoding/xml, type Decoder struct
  2437  pkg encoding/xml, type Decoder struct, AutoClose []string
  2438  pkg encoding/xml, type Decoder struct, CharsetReader func(string, io.Reader) (io.Reader, error)
  2439  pkg encoding/xml, type Decoder struct, Entity map[string]string
  2440  pkg encoding/xml, type Decoder struct, Strict bool
  2441  pkg encoding/xml, type Directive []uint8
  2442  pkg encoding/xml, type Encoder struct
  2443  pkg encoding/xml, type EndElement struct
  2444  pkg encoding/xml, type EndElement struct, Name Name
  2445  pkg encoding/xml, type Name struct
  2446  pkg encoding/xml, type Name struct, Local string
  2447  pkg encoding/xml, type Name struct, Space string
  2448  pkg encoding/xml, type ProcInst struct
  2449  pkg encoding/xml, type ProcInst struct, Inst []uint8
  2450  pkg encoding/xml, type ProcInst struct, Target string
  2451  pkg encoding/xml, type StartElement struct
  2452  pkg encoding/xml, type StartElement struct, Attr []Attr
  2453  pkg encoding/xml, type StartElement struct, Name Name
  2454  pkg encoding/xml, type SyntaxError struct
  2455  pkg encoding/xml, type SyntaxError struct, Line int
  2456  pkg encoding/xml, type SyntaxError struct, Msg string
  2457  pkg encoding/xml, type TagPathError struct
  2458  pkg encoding/xml, type TagPathError struct, Field1 string
  2459  pkg encoding/xml, type TagPathError struct, Field2 string
  2460  pkg encoding/xml, type TagPathError struct, Struct reflect.Type
  2461  pkg encoding/xml, type TagPathError struct, Tag1 string
  2462  pkg encoding/xml, type TagPathError struct, Tag2 string
  2463  pkg encoding/xml, type Token interface {}
  2464  pkg encoding/xml, type UnmarshalError string
  2465  pkg encoding/xml, type UnsupportedTypeError struct
  2466  pkg encoding/xml, type UnsupportedTypeError struct, Type reflect.Type
  2467  pkg encoding/xml, var HTMLAutoClose []string
  2468  pkg encoding/xml, var HTMLEntity map[string]string
  2469  pkg errors, func New(string) error
  2470  pkg expvar, func Do(func(KeyValue))
  2471  pkg expvar, func Get(string) Var
  2472  pkg expvar, func NewFloat(string) *Float
  2473  pkg expvar, func NewInt(string) *Int
  2474  pkg expvar, func NewMap(string) *Map
  2475  pkg expvar, func NewString(string) *String
  2476  pkg expvar, func Publish(string, Var)
  2477  pkg expvar, method (*Float) Add(float64)
  2478  pkg expvar, method (*Float) Set(float64)
  2479  pkg expvar, method (*Float) String() string
  2480  pkg expvar, method (*Int) Add(int64)
  2481  pkg expvar, method (*Int) Set(int64)
  2482  pkg expvar, method (*Int) String() string
  2483  pkg expvar, method (*Map) Add(string, int64)
  2484  pkg expvar, method (*Map) AddFloat(string, float64)
  2485  pkg expvar, method (*Map) Do(func(KeyValue))
  2486  pkg expvar, method (*Map) Get(string) Var
  2487  pkg expvar, method (*Map) Init() *Map
  2488  pkg expvar, method (*Map) Set(string, Var)
  2489  pkg expvar, method (*Map) String() string
  2490  pkg expvar, method (*String) Set(string)
  2491  pkg expvar, method (*String) String() string
  2492  pkg expvar, method (Func) String() string
  2493  pkg expvar, type Float struct
  2494  pkg expvar, type Func func() interface{}
  2495  pkg expvar, type Int struct
  2496  pkg expvar, type KeyValue struct
  2497  pkg expvar, type KeyValue struct, Key string
  2498  pkg expvar, type KeyValue struct, Value Var
  2499  pkg expvar, type Map struct
  2500  pkg expvar, type String struct
  2501  pkg expvar, type Var interface { String }
  2502  pkg expvar, type Var interface, String() string
  2503  pkg flag, const ContinueOnError ErrorHandling
  2504  pkg flag, const ExitOnError ErrorHandling
  2505  pkg flag, const PanicOnError ErrorHandling
  2506  pkg flag, func Arg(int) string
  2507  pkg flag, func Args() []string
  2508  pkg flag, func Bool(string, bool, string) *bool
  2509  pkg flag, func BoolVar(*bool, string, bool, string)
  2510  pkg flag, func Duration(string, time.Duration, string) *time.Duration
  2511  pkg flag, func DurationVar(*time.Duration, string, time.Duration, string)
  2512  pkg flag, func Float64(string, float64, string) *float64
  2513  pkg flag, func Float64Var(*float64, string, float64, string)
  2514  pkg flag, func Int(string, int, string) *int
  2515  pkg flag, func Int64(string, int64, string) *int64
  2516  pkg flag, func Int64Var(*int64, string, int64, string)
  2517  pkg flag, func IntVar(*int, string, int, string)
  2518  pkg flag, func Lookup(string) *Flag
  2519  pkg flag, func NArg() int
  2520  pkg flag, func NFlag() int
  2521  pkg flag, func NewFlagSet(string, ErrorHandling) *FlagSet
  2522  pkg flag, func Parse()
  2523  pkg flag, func Parsed() bool
  2524  pkg flag, func PrintDefaults()
  2525  pkg flag, func Set(string, string) error
  2526  pkg flag, func String(string, string, string) *string
  2527  pkg flag, func StringVar(*string, string, string, string)
  2528  pkg flag, func Uint(string, uint, string) *uint
  2529  pkg flag, func Uint64(string, uint64, string) *uint64
  2530  pkg flag, func Uint64Var(*uint64, string, uint64, string)
  2531  pkg flag, func UintVar(*uint, string, uint, string)
  2532  pkg flag, func Var(Value, string, string)
  2533  pkg flag, func Visit(func(*Flag))
  2534  pkg flag, func VisitAll(func(*Flag))
  2535  pkg flag, method (*FlagSet) Arg(int) string
  2536  pkg flag, method (*FlagSet) Args() []string
  2537  pkg flag, method (*FlagSet) Bool(string, bool, string) *bool
  2538  pkg flag, method (*FlagSet) BoolVar(*bool, string, bool, string)
  2539  pkg flag, method (*FlagSet) Duration(string, time.Duration, string) *time.Duration
  2540  pkg flag, method (*FlagSet) DurationVar(*time.Duration, string, time.Duration, string)
  2541  pkg flag, method (*FlagSet) Float64(string, float64, string) *float64
  2542  pkg flag, method (*FlagSet) Float64Var(*float64, string, float64, string)
  2543  pkg flag, method (*FlagSet) Init(string, ErrorHandling)
  2544  pkg flag, method (*FlagSet) Int(string, int, string) *int
  2545  pkg flag, method (*FlagSet) Int64(string, int64, string) *int64
  2546  pkg flag, method (*FlagSet) Int64Var(*int64, string, int64, string)
  2547  pkg flag, method (*FlagSet) IntVar(*int, string, int, string)
  2548  pkg flag, method (*FlagSet) Lookup(string) *Flag
  2549  pkg flag, method (*FlagSet) NArg() int
  2550  pkg flag, method (*FlagSet) NFlag() int
  2551  pkg flag, method (*FlagSet) Parse([]string) error
  2552  pkg flag, method (*FlagSet) Parsed() bool
  2553  pkg flag, method (*FlagSet) PrintDefaults()
  2554  pkg flag, method (*FlagSet) Set(string, string) error
  2555  pkg flag, method (*FlagSet) SetOutput(io.Writer)
  2556  pkg flag, method (*FlagSet) String(string, string, string) *string
  2557  pkg flag, method (*FlagSet) StringVar(*string, string, string, string)
  2558  pkg flag, method (*FlagSet) Uint(string, uint, string) *uint
  2559  pkg flag, method (*FlagSet) Uint64(string, uint64, string) *uint64
  2560  pkg flag, method (*FlagSet) Uint64Var(*uint64, string, uint64, string)
  2561  pkg flag, method (*FlagSet) UintVar(*uint, string, uint, string)
  2562  pkg flag, method (*FlagSet) Var(Value, string, string)
  2563  pkg flag, method (*FlagSet) Visit(func(*Flag))
  2564  pkg flag, method (*FlagSet) VisitAll(func(*Flag))
  2565  pkg flag, type ErrorHandling int
  2566  pkg flag, type Flag struct
  2567  pkg flag, type Flag struct, DefValue string
  2568  pkg flag, type Flag struct, Name string
  2569  pkg flag, type Flag struct, Usage string
  2570  pkg flag, type Flag struct, Value Value
  2571  pkg flag, type FlagSet struct
  2572  pkg flag, type FlagSet struct, Usage func()
  2573  pkg flag, type Value interface { Set, String }
  2574  pkg flag, type Value interface, Set(string) error
  2575  pkg flag, type Value interface, String() string
  2576  pkg flag, var ErrHelp error
  2577  pkg flag, var Usage func()
  2578  pkg fmt, func Errorf(string, ...interface{}) error
  2579  pkg fmt, func Fprint(io.Writer, ...interface{}) (int, error)
  2580  pkg fmt, func Fprintf(io.Writer, string, ...interface{}) (int, error)
  2581  pkg fmt, func Fprintln(io.Writer, ...interface{}) (int, error)
  2582  pkg fmt, func Fscan(io.Reader, ...interface{}) (int, error)
  2583  pkg fmt, func Fscanf(io.Reader, string, ...interface{}) (int, error)
  2584  pkg fmt, func Fscanln(io.Reader, ...interface{}) (int, error)
  2585  pkg fmt, func Print(...interface{}) (int, error)
  2586  pkg fmt, func Printf(string, ...interface{}) (int, error)
  2587  pkg fmt, func Println(...interface{}) (int, error)
  2588  pkg fmt, func Scan(...interface{}) (int, error)
  2589  pkg fmt, func Scanf(string, ...interface{}) (int, error)
  2590  pkg fmt, func Scanln(...interface{}) (int, error)
  2591  pkg fmt, func Sprint(...interface{}) string
  2592  pkg fmt, func Sprintf(string, ...interface{}) string
  2593  pkg fmt, func Sprintln(...interface{}) string
  2594  pkg fmt, func Sscan(string, ...interface{}) (int, error)
  2595  pkg fmt, func Sscanf(string, string, ...interface{}) (int, error)
  2596  pkg fmt, func Sscanln(string, ...interface{}) (int, error)
  2597  pkg fmt, type Formatter interface { Format }
  2598  pkg fmt, type Formatter interface, Format(State, int32)
  2599  pkg fmt, type GoStringer interface { GoString }
  2600  pkg fmt, type GoStringer interface, GoString() string
  2601  pkg fmt, type ScanState interface { Read, ReadRune, SkipSpace, Token, UnreadRune, Width }
  2602  pkg fmt, type ScanState interface, Read([]uint8) (int, error)
  2603  pkg fmt, type ScanState interface, ReadRune() (int32, int, error)
  2604  pkg fmt, type ScanState interface, SkipSpace()
  2605  pkg fmt, type ScanState interface, Token(bool, func(int32) bool) ([]uint8, error)
  2606  pkg fmt, type ScanState interface, UnreadRune() error
  2607  pkg fmt, type ScanState interface, Width() (int, bool)
  2608  pkg fmt, type Scanner interface { Scan }
  2609  pkg fmt, type Scanner interface, Scan(ScanState, int32) error
  2610  pkg fmt, type State interface { Flag, Precision, Width, Write }
  2611  pkg fmt, type State interface, Flag(int) bool
  2612  pkg fmt, type State interface, Precision() (int, bool)
  2613  pkg fmt, type State interface, Width() (int, bool)
  2614  pkg fmt, type State interface, Write([]uint8) (int, error)
  2615  pkg fmt, type Stringer interface { String }
  2616  pkg fmt, type Stringer interface, String() string
  2617  pkg go/ast, const Bad ObjKind
  2618  pkg go/ast, const Con ObjKind
  2619  pkg go/ast, const FilterFuncDuplicates MergeMode
  2620  pkg go/ast, const FilterImportDuplicates MergeMode
  2621  pkg go/ast, const FilterUnassociatedComments MergeMode
  2622  pkg go/ast, const Fun ObjKind
  2623  pkg go/ast, const Lbl ObjKind
  2624  pkg go/ast, const Pkg ObjKind
  2625  pkg go/ast, const RECV ChanDir
  2626  pkg go/ast, const SEND ChanDir
  2627  pkg go/ast, const Typ ObjKind
  2628  pkg go/ast, const Var ObjKind
  2629  pkg go/ast, func FileExports(*File) bool
  2630  pkg go/ast, func FilterDecl(Decl, Filter) bool
  2631  pkg go/ast, func FilterFile(*File, Filter) bool
  2632  pkg go/ast, func FilterPackage(*Package, Filter) bool
  2633  pkg go/ast, func Fprint(io.Writer, *token.FileSet, interface{}, FieldFilter) error
  2634  pkg go/ast, func Inspect(Node, func(Node) bool)
  2635  pkg go/ast, func IsExported(string) bool
  2636  pkg go/ast, func MergePackageFiles(*Package, MergeMode) *File
  2637  pkg go/ast, func NewIdent(string) *Ident
  2638  pkg go/ast, func NewObj(ObjKind, string) *Object
  2639  pkg go/ast, func NewPackage(*token.FileSet, map[string]*File, Importer, *Scope) (*Package, error)
  2640  pkg go/ast, func NewScope(*Scope) *Scope
  2641  pkg go/ast, func NotNilFilter(string, reflect.Value) bool
  2642  pkg go/ast, func PackageExports(*Package) bool
  2643  pkg go/ast, func Print(*token.FileSet, interface{}) error
  2644  pkg go/ast, func SortImports(*token.FileSet, *File)
  2645  pkg go/ast, func Walk(Visitor, Node)
  2646  pkg go/ast, method (*ArrayType) End() token.Pos
  2647  pkg go/ast, method (*ArrayType) Pos() token.Pos
  2648  pkg go/ast, method (*AssignStmt) End() token.Pos
  2649  pkg go/ast, method (*AssignStmt) Pos() token.Pos
  2650  pkg go/ast, method (*BadDecl) End() token.Pos
  2651  pkg go/ast, method (*BadDecl) Pos() token.Pos
  2652  pkg go/ast, method (*BadExpr) End() token.Pos
  2653  pkg go/ast, method (*BadExpr) Pos() token.Pos
  2654  pkg go/ast, method (*BadStmt) End() token.Pos
  2655  pkg go/ast, method (*BadStmt) Pos() token.Pos
  2656  pkg go/ast, method (*BasicLit) End() token.Pos
  2657  pkg go/ast, method (*BasicLit) Pos() token.Pos
  2658  pkg go/ast, method (*BinaryExpr) End() token.Pos
  2659  pkg go/ast, method (*BinaryExpr) Pos() token.Pos
  2660  pkg go/ast, method (*BlockStmt) End() token.Pos
  2661  pkg go/ast, method (*BlockStmt) Pos() token.Pos
  2662  pkg go/ast, method (*BranchStmt) End() token.Pos
  2663  pkg go/ast, method (*BranchStmt) Pos() token.Pos
  2664  pkg go/ast, method (*CallExpr) End() token.Pos
  2665  pkg go/ast, method (*CallExpr) Pos() token.Pos
  2666  pkg go/ast, method (*CaseClause) End() token.Pos
  2667  pkg go/ast, method (*CaseClause) Pos() token.Pos
  2668  pkg go/ast, method (*ChanType) End() token.Pos
  2669  pkg go/ast, method (*ChanType) Pos() token.Pos
  2670  pkg go/ast, method (*CommClause) End() token.Pos
  2671  pkg go/ast, method (*CommClause) Pos() token.Pos
  2672  pkg go/ast, method (*Comment) End() token.Pos
  2673  pkg go/ast, method (*Comment) Pos() token.Pos
  2674  pkg go/ast, method (*CommentGroup) End() token.Pos
  2675  pkg go/ast, method (*CommentGroup) Pos() token.Pos
  2676  pkg go/ast, method (*CommentGroup) Text() string
  2677  pkg go/ast, method (*CompositeLit) End() token.Pos
  2678  pkg go/ast, method (*CompositeLit) Pos() token.Pos
  2679  pkg go/ast, method (*DeclStmt) End() token.Pos
  2680  pkg go/ast, method (*DeclStmt) Pos() token.Pos
  2681  pkg go/ast, method (*DeferStmt) End() token.Pos
  2682  pkg go/ast, method (*DeferStmt) Pos() token.Pos
  2683  pkg go/ast, method (*Ellipsis) End() token.Pos
  2684  pkg go/ast, method (*Ellipsis) Pos() token.Pos
  2685  pkg go/ast, method (*EmptyStmt) End() token.Pos
  2686  pkg go/ast, method (*EmptyStmt) Pos() token.Pos
  2687  pkg go/ast, method (*ExprStmt) End() token.Pos
  2688  pkg go/ast, method (*ExprStmt) Pos() token.Pos
  2689  pkg go/ast, method (*Field) End() token.Pos
  2690  pkg go/ast, method (*Field) Pos() token.Pos
  2691  pkg go/ast, method (*FieldList) End() token.Pos
  2692  pkg go/ast, method (*FieldList) NumFields() int
  2693  pkg go/ast, method (*FieldList) Pos() token.Pos
  2694  pkg go/ast, method (*File) End() token.Pos
  2695  pkg go/ast, method (*File) Pos() token.Pos
  2696  pkg go/ast, method (*ForStmt) End() token.Pos
  2697  pkg go/ast, method (*ForStmt) Pos() token.Pos
  2698  pkg go/ast, method (*FuncDecl) End() token.Pos
  2699  pkg go/ast, method (*FuncDecl) Pos() token.Pos
  2700  pkg go/ast, method (*FuncLit) End() token.Pos
  2701  pkg go/ast, method (*FuncLit) Pos() token.Pos
  2702  pkg go/ast, method (*FuncType) End() token.Pos
  2703  pkg go/ast, method (*FuncType) Pos() token.Pos
  2704  pkg go/ast, method (*GenDecl) End() token.Pos
  2705  pkg go/ast, method (*GenDecl) Pos() token.Pos
  2706  pkg go/ast, method (*GoStmt) End() token.Pos
  2707  pkg go/ast, method (*GoStmt) Pos() token.Pos
  2708  pkg go/ast, method (*Ident) End() token.Pos
  2709  pkg go/ast, method (*Ident) IsExported() bool
  2710  pkg go/ast, method (*Ident) Pos() token.Pos
  2711  pkg go/ast, method (*Ident) String() string
  2712  pkg go/ast, method (*IfStmt) End() token.Pos
  2713  pkg go/ast, method (*IfStmt) Pos() token.Pos
  2714  pkg go/ast, method (*ImportSpec) End() token.Pos
  2715  pkg go/ast, method (*ImportSpec) Pos() token.Pos
  2716  pkg go/ast, method (*IncDecStmt) End() token.Pos
  2717  pkg go/ast, method (*IncDecStmt) Pos() token.Pos
  2718  pkg go/ast, method (*IndexExpr) End() token.Pos
  2719  pkg go/ast, method (*IndexExpr) Pos() token.Pos
  2720  pkg go/ast, method (*InterfaceType) End() token.Pos
  2721  pkg go/ast, method (*InterfaceType) Pos() token.Pos
  2722  pkg go/ast, method (*KeyValueExpr) End() token.Pos
  2723  pkg go/ast, method (*KeyValueExpr) Pos() token.Pos
  2724  pkg go/ast, method (*LabeledStmt) End() token.Pos
  2725  pkg go/ast, method (*LabeledStmt) Pos() token.Pos
  2726  pkg go/ast, method (*MapType) End() token.Pos
  2727  pkg go/ast, method (*MapType) Pos() token.Pos
  2728  pkg go/ast, method (*Object) Pos() token.Pos
  2729  pkg go/ast, method (*Package) End() token.Pos
  2730  pkg go/ast, method (*Package) Pos() token.Pos
  2731  pkg go/ast, method (*ParenExpr) End() token.Pos
  2732  pkg go/ast, method (*ParenExpr) Pos() token.Pos
  2733  pkg go/ast, method (*RangeStmt) End() token.Pos
  2734  pkg go/ast, method (*RangeStmt) Pos() token.Pos
  2735  pkg go/ast, method (*ReturnStmt) End() token.Pos
  2736  pkg go/ast, method (*ReturnStmt) Pos() token.Pos
  2737  pkg go/ast, method (*Scope) Insert(*Object) *Object
  2738  pkg go/ast, method (*Scope) Lookup(string) *Object
  2739  pkg go/ast, method (*Scope) String() string
  2740  pkg go/ast, method (*SelectStmt) End() token.Pos
  2741  pkg go/ast, method (*SelectStmt) Pos() token.Pos
  2742  pkg go/ast, method (*SelectorExpr) End() token.Pos
  2743  pkg go/ast, method (*SelectorExpr) Pos() token.Pos
  2744  pkg go/ast, method (*SendStmt) End() token.Pos
  2745  pkg go/ast, method (*SendStmt) Pos() token.Pos
  2746  pkg go/ast, method (*SliceExpr) End() token.Pos
  2747  pkg go/ast, method (*SliceExpr) Pos() token.Pos
  2748  pkg go/ast, method (*StarExpr) End() token.Pos
  2749  pkg go/ast, method (*StarExpr) Pos() token.Pos
  2750  pkg go/ast, method (*StructType) End() token.Pos
  2751  pkg go/ast, method (*StructType) Pos() token.Pos
  2752  pkg go/ast, method (*SwitchStmt) End() token.Pos
  2753  pkg go/ast, method (*SwitchStmt) Pos() token.Pos
  2754  pkg go/ast, method (*TypeAssertExpr) End() token.Pos
  2755  pkg go/ast, method (*TypeAssertExpr) Pos() token.Pos
  2756  pkg go/ast, method (*TypeSpec) End() token.Pos
  2757  pkg go/ast, method (*TypeSpec) Pos() token.Pos
  2758  pkg go/ast, method (*TypeSwitchStmt) End() token.Pos
  2759  pkg go/ast, method (*TypeSwitchStmt) Pos() token.Pos
  2760  pkg go/ast, method (*UnaryExpr) End() token.Pos
  2761  pkg go/ast, method (*UnaryExpr) Pos() token.Pos
  2762  pkg go/ast, method (*ValueSpec) End() token.Pos
  2763  pkg go/ast, method (*ValueSpec) Pos() token.Pos
  2764  pkg go/ast, method (ObjKind) String() string
  2765  pkg go/ast, type ArrayType struct
  2766  pkg go/ast, type ArrayType struct, Elt Expr
  2767  pkg go/ast, type ArrayType struct, Lbrack token.Pos
  2768  pkg go/ast, type ArrayType struct, Len Expr
  2769  pkg go/ast, type AssignStmt struct
  2770  pkg go/ast, type AssignStmt struct, Lhs []Expr
  2771  pkg go/ast, type AssignStmt struct, Rhs []Expr
  2772  pkg go/ast, type AssignStmt struct, Tok token.Token
  2773  pkg go/ast, type AssignStmt struct, TokPos token.Pos
  2774  pkg go/ast, type BadDecl struct
  2775  pkg go/ast, type BadDecl struct, From token.Pos
  2776  pkg go/ast, type BadDecl struct, To token.Pos
  2777  pkg go/ast, type BadExpr struct
  2778  pkg go/ast, type BadExpr struct, From token.Pos
  2779  pkg go/ast, type BadExpr struct, To token.Pos
  2780  pkg go/ast, type BadStmt struct
  2781  pkg go/ast, type BadStmt struct, From token.Pos
  2782  pkg go/ast, type BadStmt struct, To token.Pos
  2783  pkg go/ast, type BasicLit struct
  2784  pkg go/ast, type BasicLit struct, Kind token.Token
  2785  pkg go/ast, type BasicLit struct, Value string
  2786  pkg go/ast, type BasicLit struct, ValuePos token.Pos
  2787  pkg go/ast, type BinaryExpr struct
  2788  pkg go/ast, type BinaryExpr struct, Op token.Token
  2789  pkg go/ast, type BinaryExpr struct, OpPos token.Pos
  2790  pkg go/ast, type BinaryExpr struct, X Expr
  2791  pkg go/ast, type BinaryExpr struct, Y Expr
  2792  pkg go/ast, type BlockStmt struct
  2793  pkg go/ast, type BlockStmt struct, Lbrace token.Pos
  2794  pkg go/ast, type BlockStmt struct, List []Stmt
  2795  pkg go/ast, type BlockStmt struct, Rbrace token.Pos
  2796  pkg go/ast, type BranchStmt struct
  2797  pkg go/ast, type BranchStmt struct, Label *Ident
  2798  pkg go/ast, type BranchStmt struct, Tok token.Token
  2799  pkg go/ast, type BranchStmt struct, TokPos token.Pos
  2800  pkg go/ast, type CallExpr struct
  2801  pkg go/ast, type CallExpr struct, Args []Expr
  2802  pkg go/ast, type CallExpr struct, Ellipsis token.Pos
  2803  pkg go/ast, type CallExpr struct, Fun Expr
  2804  pkg go/ast, type CallExpr struct, Lparen token.Pos
  2805  pkg go/ast, type CallExpr struct, Rparen token.Pos
  2806  pkg go/ast, type CaseClause struct
  2807  pkg go/ast, type CaseClause struct, Body []Stmt
  2808  pkg go/ast, type CaseClause struct, Case token.Pos
  2809  pkg go/ast, type CaseClause struct, Colon token.Pos
  2810  pkg go/ast, type CaseClause struct, List []Expr
  2811  pkg go/ast, type ChanDir int
  2812  pkg go/ast, type ChanType struct
  2813  pkg go/ast, type ChanType struct, Begin token.Pos
  2814  pkg go/ast, type ChanType struct, Dir ChanDir
  2815  pkg go/ast, type ChanType struct, Value Expr
  2816  pkg go/ast, type CommClause struct
  2817  pkg go/ast, type CommClause struct, Body []Stmt
  2818  pkg go/ast, type CommClause struct, Case token.Pos
  2819  pkg go/ast, type CommClause struct, Colon token.Pos
  2820  pkg go/ast, type CommClause struct, Comm Stmt
  2821  pkg go/ast, type Comment struct
  2822  pkg go/ast, type Comment struct, Slash token.Pos
  2823  pkg go/ast, type Comment struct, Text string
  2824  pkg go/ast, type CommentGroup struct
  2825  pkg go/ast, type CommentGroup struct, List []*Comment
  2826  pkg go/ast, type CompositeLit struct
  2827  pkg go/ast, type CompositeLit struct, Elts []Expr
  2828  pkg go/ast, type CompositeLit struct, Lbrace token.Pos
  2829  pkg go/ast, type CompositeLit struct, Rbrace token.Pos
  2830  pkg go/ast, type CompositeLit struct, Type Expr
  2831  pkg go/ast, type Decl interface, End() token.Pos
  2832  pkg go/ast, type Decl interface, Pos() token.Pos
  2833  pkg go/ast, type Decl interface, unexported methods
  2834  pkg go/ast, type DeclStmt struct
  2835  pkg go/ast, type DeclStmt struct, Decl Decl
  2836  pkg go/ast, type DeferStmt struct
  2837  pkg go/ast, type DeferStmt struct, Call *CallExpr
  2838  pkg go/ast, type DeferStmt struct, Defer token.Pos
  2839  pkg go/ast, type Ellipsis struct
  2840  pkg go/ast, type Ellipsis struct, Ellipsis token.Pos
  2841  pkg go/ast, type Ellipsis struct, Elt Expr
  2842  pkg go/ast, type EmptyStmt struct
  2843  pkg go/ast, type EmptyStmt struct, Semicolon token.Pos
  2844  pkg go/ast, type Expr interface, End() token.Pos
  2845  pkg go/ast, type Expr interface, Pos() token.Pos
  2846  pkg go/ast, type Expr interface, unexported methods
  2847  pkg go/ast, type ExprStmt struct
  2848  pkg go/ast, type ExprStmt struct, X Expr
  2849  pkg go/ast, type Field struct
  2850  pkg go/ast, type Field struct, Comment *CommentGroup
  2851  pkg go/ast, type Field struct, Doc *CommentGroup
  2852  pkg go/ast, type Field struct, Names []*Ident
  2853  pkg go/ast, type Field struct, Tag *BasicLit
  2854  pkg go/ast, type Field struct, Type Expr
  2855  pkg go/ast, type FieldFilter func(string, reflect.Value) bool
  2856  pkg go/ast, type FieldList struct
  2857  pkg go/ast, type FieldList struct, Closing token.Pos
  2858  pkg go/ast, type FieldList struct, List []*Field
  2859  pkg go/ast, type FieldList struct, Opening token.Pos
  2860  pkg go/ast, type File struct
  2861  pkg go/ast, type File struct, Comments []*CommentGroup
  2862  pkg go/ast, type File struct, Decls []Decl
  2863  pkg go/ast, type File struct, Doc *CommentGroup
  2864  pkg go/ast, type File struct, Imports []*ImportSpec
  2865  pkg go/ast, type File struct, Name *Ident
  2866  pkg go/ast, type File struct, Package token.Pos
  2867  pkg go/ast, type File struct, Scope *Scope
  2868  pkg go/ast, type File struct, Unresolved []*Ident
  2869  pkg go/ast, type Filter func(string) bool
  2870  pkg go/ast, type ForStmt struct
  2871  pkg go/ast, type ForStmt struct, Body *BlockStmt
  2872  pkg go/ast, type ForStmt struct, Cond Expr
  2873  pkg go/ast, type ForStmt struct, For token.Pos
  2874  pkg go/ast, type ForStmt struct, Init Stmt
  2875  pkg go/ast, type ForStmt struct, Post Stmt
  2876  pkg go/ast, type FuncDecl struct
  2877  pkg go/ast, type FuncDecl struct, Body *BlockStmt
  2878  pkg go/ast, type FuncDecl struct, Doc *CommentGroup
  2879  pkg go/ast, type FuncDecl struct, Name *Ident
  2880  pkg go/ast, type FuncDecl struct, Recv *FieldList
  2881  pkg go/ast, type FuncDecl struct, Type *FuncType
  2882  pkg go/ast, type FuncLit struct
  2883  pkg go/ast, type FuncLit struct, Body *BlockStmt
  2884  pkg go/ast, type FuncLit struct, Type *FuncType
  2885  pkg go/ast, type FuncType struct
  2886  pkg go/ast, type FuncType struct, Func token.Pos
  2887  pkg go/ast, type FuncType struct, Params *FieldList
  2888  pkg go/ast, type FuncType struct, Results *FieldList
  2889  pkg go/ast, type GenDecl struct
  2890  pkg go/ast, type GenDecl struct, Doc *CommentGroup
  2891  pkg go/ast, type GenDecl struct, Lparen token.Pos
  2892  pkg go/ast, type GenDecl struct, Rparen token.Pos
  2893  pkg go/ast, type GenDecl struct, Specs []Spec
  2894  pkg go/ast, type GenDecl struct, Tok token.Token
  2895  pkg go/ast, type GenDecl struct, TokPos token.Pos
  2896  pkg go/ast, type GoStmt struct
  2897  pkg go/ast, type GoStmt struct, Call *CallExpr
  2898  pkg go/ast, type GoStmt struct, Go token.Pos
  2899  pkg go/ast, type Ident struct
  2900  pkg go/ast, type Ident struct, Name string
  2901  pkg go/ast, type Ident struct, NamePos token.Pos
  2902  pkg go/ast, type Ident struct, Obj *Object
  2903  pkg go/ast, type IfStmt struct
  2904  pkg go/ast, type IfStmt struct, Body *BlockStmt
  2905  pkg go/ast, type IfStmt struct, Cond Expr
  2906  pkg go/ast, type IfStmt struct, Else Stmt
  2907  pkg go/ast, type IfStmt struct, If token.Pos
  2908  pkg go/ast, type IfStmt struct, Init Stmt
  2909  pkg go/ast, type ImportSpec struct
  2910  pkg go/ast, type ImportSpec struct, Comment *CommentGroup
  2911  pkg go/ast, type ImportSpec struct, Doc *CommentGroup
  2912  pkg go/ast, type ImportSpec struct, EndPos token.Pos
  2913  pkg go/ast, type ImportSpec struct, Name *Ident
  2914  pkg go/ast, type ImportSpec struct, Path *BasicLit
  2915  pkg go/ast, type Importer func(map[string]*Object, string) (*Object, error)
  2916  pkg go/ast, type IncDecStmt struct
  2917  pkg go/ast, type IncDecStmt struct, Tok token.Token
  2918  pkg go/ast, type IncDecStmt struct, TokPos token.Pos
  2919  pkg go/ast, type IncDecStmt struct, X Expr
  2920  pkg go/ast, type IndexExpr struct
  2921  pkg go/ast, type IndexExpr struct, Index Expr
  2922  pkg go/ast, type IndexExpr struct, Lbrack token.Pos
  2923  pkg go/ast, type IndexExpr struct, Rbrack token.Pos
  2924  pkg go/ast, type IndexExpr struct, X Expr
  2925  pkg go/ast, type InterfaceType struct
  2926  pkg go/ast, type InterfaceType struct, Incomplete bool
  2927  pkg go/ast, type InterfaceType struct, Interface token.Pos
  2928  pkg go/ast, type InterfaceType struct, Methods *FieldList
  2929  pkg go/ast, type KeyValueExpr struct
  2930  pkg go/ast, type KeyValueExpr struct, Colon token.Pos
  2931  pkg go/ast, type KeyValueExpr struct, Key Expr
  2932  pkg go/ast, type KeyValueExpr struct, Value Expr
  2933  pkg go/ast, type LabeledStmt struct
  2934  pkg go/ast, type LabeledStmt struct, Colon token.Pos
  2935  pkg go/ast, type LabeledStmt struct, Label *Ident
  2936  pkg go/ast, type LabeledStmt struct, Stmt Stmt
  2937  pkg go/ast, type MapType struct
  2938  pkg go/ast, type MapType struct, Key Expr
  2939  pkg go/ast, type MapType struct, Map token.Pos
  2940  pkg go/ast, type MapType struct, Value Expr
  2941  pkg go/ast, type MergeMode uint
  2942  pkg go/ast, type Node interface { End, Pos }
  2943  pkg go/ast, type Node interface, End() token.Pos
  2944  pkg go/ast, type Node interface, Pos() token.Pos
  2945  pkg go/ast, type ObjKind int
  2946  pkg go/ast, type Object struct
  2947  pkg go/ast, type Object struct, Data interface{}
  2948  pkg go/ast, type Object struct, Decl interface{}
  2949  pkg go/ast, type Object struct, Kind ObjKind
  2950  pkg go/ast, type Object struct, Name string
  2951  pkg go/ast, type Object struct, Type interface{}
  2952  pkg go/ast, type Package struct
  2953  pkg go/ast, type Package struct, Files map[string]*File
  2954  pkg go/ast, type Package struct, Imports map[string]*Object
  2955  pkg go/ast, type Package struct, Name string
  2956  pkg go/ast, type Package struct, Scope *Scope
  2957  pkg go/ast, type ParenExpr struct
  2958  pkg go/ast, type ParenExpr struct, Lparen token.Pos
  2959  pkg go/ast, type ParenExpr struct, Rparen token.Pos
  2960  pkg go/ast, type ParenExpr struct, X Expr
  2961  pkg go/ast, type RangeStmt struct
  2962  pkg go/ast, type RangeStmt struct, Body *BlockStmt
  2963  pkg go/ast, type RangeStmt struct, For token.Pos
  2964  pkg go/ast, type RangeStmt struct, Key Expr
  2965  pkg go/ast, type RangeStmt struct, Tok token.Token
  2966  pkg go/ast, type RangeStmt struct, TokPos token.Pos
  2967  pkg go/ast, type RangeStmt struct, Value Expr
  2968  pkg go/ast, type RangeStmt struct, X Expr
  2969  pkg go/ast, type ReturnStmt struct
  2970  pkg go/ast, type ReturnStmt struct, Results []Expr
  2971  pkg go/ast, type ReturnStmt struct, Return token.Pos
  2972  pkg go/ast, type Scope struct
  2973  pkg go/ast, type Scope struct, Objects map[string]*Object
  2974  pkg go/ast, type Scope struct, Outer *Scope
  2975  pkg go/ast, type SelectStmt struct
  2976  pkg go/ast, type SelectStmt struct, Body *BlockStmt
  2977  pkg go/ast, type SelectStmt struct, Select token.Pos
  2978  pkg go/ast, type SelectorExpr struct
  2979  pkg go/ast, type SelectorExpr struct, Sel *Ident
  2980  pkg go/ast, type SelectorExpr struct, X Expr
  2981  pkg go/ast, type SendStmt struct
  2982  pkg go/ast, type SendStmt struct, Arrow token.Pos
  2983  pkg go/ast, type SendStmt struct, Chan Expr
  2984  pkg go/ast, type SendStmt struct, Value Expr
  2985  pkg go/ast, type SliceExpr struct
  2986  pkg go/ast, type SliceExpr struct, High Expr
  2987  pkg go/ast, type SliceExpr struct, Lbrack token.Pos
  2988  pkg go/ast, type SliceExpr struct, Low Expr
  2989  pkg go/ast, type SliceExpr struct, Rbrack token.Pos
  2990  pkg go/ast, type SliceExpr struct, X Expr
  2991  pkg go/ast, type Spec interface, End() token.Pos
  2992  pkg go/ast, type Spec interface, Pos() token.Pos
  2993  pkg go/ast, type Spec interface, unexported methods
  2994  pkg go/ast, type StarExpr struct
  2995  pkg go/ast, type StarExpr struct, Star token.Pos
  2996  pkg go/ast, type StarExpr struct, X Expr
  2997  pkg go/ast, type Stmt interface, End() token.Pos
  2998  pkg go/ast, type Stmt interface, Pos() token.Pos
  2999  pkg go/ast, type Stmt interface, unexported methods
  3000  pkg go/ast, type StructType struct
  3001  pkg go/ast, type StructType struct, Fields *FieldList
  3002  pkg go/ast, type StructType struct, Incomplete bool
  3003  pkg go/ast, type StructType struct, Struct token.Pos
  3004  pkg go/ast, type SwitchStmt struct
  3005  pkg go/ast, type SwitchStmt struct, Body *BlockStmt
  3006  pkg go/ast, type SwitchStmt struct, Init Stmt
  3007  pkg go/ast, type SwitchStmt struct, Switch token.Pos
  3008  pkg go/ast, type SwitchStmt struct, Tag Expr
  3009  pkg go/ast, type TypeAssertExpr struct
  3010  pkg go/ast, type TypeAssertExpr struct, Type Expr
  3011  pkg go/ast, type TypeAssertExpr struct, X Expr
  3012  pkg go/ast, type TypeSpec struct
  3013  pkg go/ast, type TypeSpec struct, Comment *CommentGroup
  3014  pkg go/ast, type TypeSpec struct, Doc *CommentGroup
  3015  pkg go/ast, type TypeSpec struct, Name *Ident
  3016  pkg go/ast, type TypeSpec struct, Type Expr
  3017  pkg go/ast, type TypeSwitchStmt struct
  3018  pkg go/ast, type TypeSwitchStmt struct, Assign Stmt
  3019  pkg go/ast, type TypeSwitchStmt struct, Body *BlockStmt
  3020  pkg go/ast, type TypeSwitchStmt struct, Init Stmt
  3021  pkg go/ast, type TypeSwitchStmt struct, Switch token.Pos
  3022  pkg go/ast, type UnaryExpr struct
  3023  pkg go/ast, type UnaryExpr struct, Op token.Token
  3024  pkg go/ast, type UnaryExpr struct, OpPos token.Pos
  3025  pkg go/ast, type UnaryExpr struct, X Expr
  3026  pkg go/ast, type ValueSpec struct
  3027  pkg go/ast, type ValueSpec struct, Comment *CommentGroup
  3028  pkg go/ast, type ValueSpec struct, Doc *CommentGroup
  3029  pkg go/ast, type ValueSpec struct, Names []*Ident
  3030  pkg go/ast, type ValueSpec struct, Type Expr
  3031  pkg go/ast, type ValueSpec struct, Values []Expr
  3032  pkg go/ast, type Visitor interface { Visit }
  3033  pkg go/ast, type Visitor interface, Visit(Node) Visitor
  3034  pkg go/build, const AllowBinary ImportMode
  3035  pkg go/build, const FindOnly ImportMode
  3036  pkg go/build, func ArchChar(string) (string, error)
  3037  pkg go/build, func Import(string, string, ImportMode) (*Package, error)
  3038  pkg go/build, func ImportDir(string, ImportMode) (*Package, error)
  3039  pkg go/build, func IsLocalImport(string) bool
  3040  pkg go/build, method (*Context) Import(string, string, ImportMode) (*Package, error)
  3041  pkg go/build, method (*Context) ImportDir(string, ImportMode) (*Package, error)
  3042  pkg go/build, method (*Context) SrcDirs() []string
  3043  pkg go/build, method (*NoGoError) Error() string
  3044  pkg go/build, method (*Package) IsCommand() bool
  3045  pkg go/build, type Context struct
  3046  pkg go/build, type Context struct, BuildTags []string
  3047  pkg go/build, type Context struct, CgoEnabled bool
  3048  pkg go/build, type Context struct, Compiler string
  3049  pkg go/build, type Context struct, GOARCH string
  3050  pkg go/build, type Context struct, GOOS string
  3051  pkg go/build, type Context struct, GOPATH string
  3052  pkg go/build, type Context struct, GOROOT string
  3053  pkg go/build, type Context struct, HasSubdir func(string, string) (string, bool)
  3054  pkg go/build, type Context struct, IsAbsPath func(string) bool
  3055  pkg go/build, type Context struct, IsDir func(string) bool
  3056  pkg go/build, type Context struct, JoinPath func(...string) string
  3057  pkg go/build, type Context struct, OpenFile func(string) (io.ReadCloser, error)
  3058  pkg go/build, type Context struct, ReadDir func(string) ([]os.FileInfo, error)
  3059  pkg go/build, type Context struct, SplitPathList func(string) []string
  3060  pkg go/build, type Context struct, UseAllFiles bool
  3061  pkg go/build, type ImportMode uint
  3062  pkg go/build, type NoGoError struct
  3063  pkg go/build, type NoGoError struct, Dir string
  3064  pkg go/build, type Package struct
  3065  pkg go/build, type Package struct, BinDir string
  3066  pkg go/build, type Package struct, CFiles []string
  3067  pkg go/build, type Package struct, CgoCFLAGS []string
  3068  pkg go/build, type Package struct, CgoFiles []string
  3069  pkg go/build, type Package struct, CgoLDFLAGS []string
  3070  pkg go/build, type Package struct, CgoPkgConfig []string
  3071  pkg go/build, type Package struct, Dir string
  3072  pkg go/build, type Package struct, Doc string
  3073  pkg go/build, type Package struct, GoFiles []string
  3074  pkg go/build, type Package struct, Goroot bool
  3075  pkg go/build, type Package struct, HFiles []string
  3076  pkg go/build, type Package struct, ImportPath string
  3077  pkg go/build, type Package struct, ImportPos map[string][]token.Position
  3078  pkg go/build, type Package struct, Imports []string
  3079  pkg go/build, type Package struct, Name string
  3080  pkg go/build, type Package struct, PkgObj string
  3081  pkg go/build, type Package struct, PkgRoot string
  3082  pkg go/build, type Package struct, Root string
  3083  pkg go/build, type Package struct, SFiles []string
  3084  pkg go/build, type Package struct, SrcRoot string
  3085  pkg go/build, type Package struct, SysoFiles []string
  3086  pkg go/build, type Package struct, TestGoFiles []string
  3087  pkg go/build, type Package struct, TestImportPos map[string][]token.Position
  3088  pkg go/build, type Package struct, TestImports []string
  3089  pkg go/build, type Package struct, XTestGoFiles []string
  3090  pkg go/build, type Package struct, XTestImportPos map[string][]token.Position
  3091  pkg go/build, type Package struct, XTestImports []string
  3092  pkg go/build, var Default Context
  3093  pkg go/build, var ToolDir string
  3094  pkg go/doc, const AllDecls Mode
  3095  pkg go/doc, const AllMethods Mode
  3096  pkg go/doc, func Examples(...*ast.File) []*Example
  3097  pkg go/doc, func New(*ast.Package, string, Mode) *Package
  3098  pkg go/doc, func Synopsis(string) string
  3099  pkg go/doc, func ToHTML(io.Writer, string, map[string]string)
  3100  pkg go/doc, func ToText(io.Writer, string, string, string, int)
  3101  pkg go/doc, method (*Package) Filter(Filter)
  3102  pkg go/doc, type Example struct
  3103  pkg go/doc, type Example struct, Code ast.Node
  3104  pkg go/doc, type Example struct, Comments []*ast.CommentGroup
  3105  pkg go/doc, type Example struct, Doc string
  3106  pkg go/doc, type Example struct, Name string
  3107  pkg go/doc, type Example struct, Output string
  3108  pkg go/doc, type Filter func(string) bool
  3109  pkg go/doc, type Func struct
  3110  pkg go/doc, type Func struct, Decl *ast.FuncDecl
  3111  pkg go/doc, type Func struct, Doc string
  3112  pkg go/doc, type Func struct, Level int
  3113  pkg go/doc, type Func struct, Name string
  3114  pkg go/doc, type Func struct, Orig string
  3115  pkg go/doc, type Func struct, Recv string
  3116  pkg go/doc, type Mode int
  3117  pkg go/doc, type Package struct
  3118  pkg go/doc, type Package struct, Bugs []string
  3119  pkg go/doc, type Package struct, Consts []*Value
  3120  pkg go/doc, type Package struct, Doc string
  3121  pkg go/doc, type Package struct, Filenames []string
  3122  pkg go/doc, type Package struct, Funcs []*Func
  3123  pkg go/doc, type Package struct, ImportPath string
  3124  pkg go/doc, type Package struct, Imports []string
  3125  pkg go/doc, type Package struct, Name string
  3126  pkg go/doc, type Package struct, Types []*Type
  3127  pkg go/doc, type Package struct, Vars []*Value
  3128  pkg go/doc, type Type struct
  3129  pkg go/doc, type Type struct, Consts []*Value
  3130  pkg go/doc, type Type struct, Decl *ast.GenDecl
  3131  pkg go/doc, type Type struct, Doc string
  3132  pkg go/doc, type Type struct, Funcs []*Func
  3133  pkg go/doc, type Type struct, Methods []*Func
  3134  pkg go/doc, type Type struct, Name string
  3135  pkg go/doc, type Type struct, Vars []*Value
  3136  pkg go/doc, type Value struct
  3137  pkg go/doc, type Value struct, Decl *ast.GenDecl
  3138  pkg go/doc, type Value struct, Doc string
  3139  pkg go/doc, type Value struct, Names []string
  3140  pkg go/parser, const DeclarationErrors Mode
  3141  pkg go/parser, const ImportsOnly Mode
  3142  pkg go/parser, const PackageClauseOnly Mode
  3143  pkg go/parser, const ParseComments Mode
  3144  pkg go/parser, const SpuriousErrors Mode
  3145  pkg go/parser, const Trace Mode
  3146  pkg go/parser, func ParseDir(*token.FileSet, string, func(os.FileInfo) bool, Mode) (map[string]*ast.Package, error)
  3147  pkg go/parser, func ParseExpr(string) (ast.Expr, error)
  3148  pkg go/parser, func ParseFile(*token.FileSet, string, interface{}, Mode) (*ast.File, error)
  3149  pkg go/parser, type Mode uint
  3150  pkg go/printer, const RawFormat Mode
  3151  pkg go/printer, const SourcePos Mode
  3152  pkg go/printer, const TabIndent Mode
  3153  pkg go/printer, const UseSpaces Mode
  3154  pkg go/printer, func Fprint(io.Writer, *token.FileSet, interface{}) error
  3155  pkg go/printer, method (*Config) Fprint(io.Writer, *token.FileSet, interface{}) error
  3156  pkg go/printer, type CommentedNode struct
  3157  pkg go/printer, type CommentedNode struct, Comments []*ast.CommentGroup
  3158  pkg go/printer, type CommentedNode struct, Node interface{}
  3159  pkg go/printer, type Config struct
  3160  pkg go/printer, type Config struct, Mode Mode
  3161  pkg go/printer, type Config struct, Tabwidth int
  3162  pkg go/printer, type Mode uint
  3163  pkg go/scanner, const ScanComments Mode
  3164  pkg go/scanner, func PrintError(io.Writer, error)
  3165  pkg go/scanner, method (*ErrorList) Add(token.Position, string)
  3166  pkg go/scanner, method (*ErrorList) RemoveMultiples()
  3167  pkg go/scanner, method (*ErrorList) Reset()
  3168  pkg go/scanner, method (*Scanner) Init(*token.File, []uint8, ErrorHandler, Mode)
  3169  pkg go/scanner, method (*Scanner) Scan() (token.Pos, token.Token, string)
  3170  pkg go/scanner, method (Error) Error() string
  3171  pkg go/scanner, method (ErrorList) Err() error
  3172  pkg go/scanner, method (ErrorList) Error() string
  3173  pkg go/scanner, method (ErrorList) Len() int
  3174  pkg go/scanner, method (ErrorList) Less(int, int) bool
  3175  pkg go/scanner, method (ErrorList) Sort()
  3176  pkg go/scanner, method (ErrorList) Swap(int, int)
  3177  pkg go/scanner, type Error struct
  3178  pkg go/scanner, type Error struct, Msg string
  3179  pkg go/scanner, type Error struct, Pos token.Position
  3180  pkg go/scanner, type ErrorHandler func(token.Position, string)
  3181  pkg go/scanner, type ErrorList []*Error
  3182  pkg go/scanner, type Mode uint
  3183  pkg go/scanner, type Scanner struct
  3184  pkg go/scanner, type Scanner struct, ErrorCount int
  3185  pkg go/token, const ADD Token
  3186  pkg go/token, const ADD_ASSIGN Token
  3187  pkg go/token, const AND Token
  3188  pkg go/token, const AND_ASSIGN Token
  3189  pkg go/token, const AND_NOT Token
  3190  pkg go/token, const AND_NOT_ASSIGN Token
  3191  pkg go/token, const ARROW Token
  3192  pkg go/token, const ASSIGN Token
  3193  pkg go/token, const BREAK Token
  3194  pkg go/token, const CASE Token
  3195  pkg go/token, const CHAN Token
  3196  pkg go/token, const CHAR Token
  3197  pkg go/token, const COLON Token
  3198  pkg go/token, const COMMA Token
  3199  pkg go/token, const COMMENT Token
  3200  pkg go/token, const CONST Token
  3201  pkg go/token, const CONTINUE Token
  3202  pkg go/token, const DEC Token
  3203  pkg go/token, const DEFAULT Token
  3204  pkg go/token, const DEFER Token
  3205  pkg go/token, const DEFINE Token
  3206  pkg go/token, const ELLIPSIS Token
  3207  pkg go/token, const ELSE Token
  3208  pkg go/token, const EOF Token
  3209  pkg go/token, const EQL Token
  3210  pkg go/token, const FALLTHROUGH Token
  3211  pkg go/token, const FLOAT Token
  3212  pkg go/token, const FOR Token
  3213  pkg go/token, const FUNC Token
  3214  pkg go/token, const GEQ Token
  3215  pkg go/token, const GO Token
  3216  pkg go/token, const GOTO Token
  3217  pkg go/token, const GTR Token
  3218  pkg go/token, const HighestPrec ideal-int
  3219  pkg go/token, const IDENT Token
  3220  pkg go/token, const IF Token
  3221  pkg go/token, const ILLEGAL Token
  3222  pkg go/token, const IMAG Token
  3223  pkg go/token, const IMPORT Token
  3224  pkg go/token, const INC Token
  3225  pkg go/token, const INT Token
  3226  pkg go/token, const INTERFACE Token
  3227  pkg go/token, const LAND Token
  3228  pkg go/token, const LBRACE Token
  3229  pkg go/token, const LBRACK Token
  3230  pkg go/token, const LEQ Token
  3231  pkg go/token, const LOR Token
  3232  pkg go/token, const LPAREN Token
  3233  pkg go/token, const LSS Token
  3234  pkg go/token, const LowestPrec ideal-int
  3235  pkg go/token, const MAP Token
  3236  pkg go/token, const MUL Token
  3237  pkg go/token, const MUL_ASSIGN Token
  3238  pkg go/token, const NEQ Token
  3239  pkg go/token, const NOT Token
  3240  pkg go/token, const NoPos Pos
  3241  pkg go/token, const OR Token
  3242  pkg go/token, const OR_ASSIGN Token
  3243  pkg go/token, const PACKAGE Token
  3244  pkg go/token, const PERIOD Token
  3245  pkg go/token, const QUO Token
  3246  pkg go/token, const QUO_ASSIGN Token
  3247  pkg go/token, const RANGE Token
  3248  pkg go/token, const RBRACE Token
  3249  pkg go/token, const RBRACK Token
  3250  pkg go/token, const REM Token
  3251  pkg go/token, const REM_ASSIGN Token
  3252  pkg go/token, const RETURN Token
  3253  pkg go/token, const RPAREN Token
  3254  pkg go/token, const SELECT Token
  3255  pkg go/token, const SEMICOLON Token
  3256  pkg go/token, const SHL Token
  3257  pkg go/token, const SHL_ASSIGN Token
  3258  pkg go/token, const SHR Token
  3259  pkg go/token, const SHR_ASSIGN Token
  3260  pkg go/token, const STRING Token
  3261  pkg go/token, const STRUCT Token
  3262  pkg go/token, const SUB Token
  3263  pkg go/token, const SUB_ASSIGN Token
  3264  pkg go/token, const SWITCH Token
  3265  pkg go/token, const TYPE Token
  3266  pkg go/token, const UnaryPrec ideal-int
  3267  pkg go/token, const VAR Token
  3268  pkg go/token, const XOR Token
  3269  pkg go/token, const XOR_ASSIGN Token
  3270  pkg go/token, func Lookup(string) Token
  3271  pkg go/token, func NewFileSet() *FileSet
  3272  pkg go/token, method (*File) AddLine(int)
  3273  pkg go/token, method (*File) AddLineInfo(int, string, int)
  3274  pkg go/token, method (*File) Base() int
  3275  pkg go/token, method (*File) Line(Pos) int
  3276  pkg go/token, method (*File) LineCount() int
  3277  pkg go/token, method (*File) Name() string
  3278  pkg go/token, method (*File) Offset(Pos) int
  3279  pkg go/token, method (*File) Pos(int) Pos
  3280  pkg go/token, method (*File) Position(Pos) Position
  3281  pkg go/token, method (*File) SetLines([]int) bool
  3282  pkg go/token, method (*File) SetLinesForContent([]uint8)
  3283  pkg go/token, method (*File) Size() int
  3284  pkg go/token, method (*FileSet) AddFile(string, int, int) *File
  3285  pkg go/token, method (*FileSet) Base() int
  3286  pkg go/token, method (*FileSet) File(Pos) *File
  3287  pkg go/token, method (*FileSet) Iterate(func(*File) bool)
  3288  pkg go/token, method (*FileSet) Position(Pos) Position
  3289  pkg go/token, method (*FileSet) Read(func(interface{}) error) error
  3290  pkg go/token, method (*FileSet) Write(func(interface{}) error) error
  3291  pkg go/token, method (*Position) IsValid() bool
  3292  pkg go/token, method (Pos) IsValid() bool
  3293  pkg go/token, method (Position) String() string
  3294  pkg go/token, method (Token) IsKeyword() bool
  3295  pkg go/token, method (Token) IsLiteral() bool
  3296  pkg go/token, method (Token) IsOperator() bool
  3297  pkg go/token, method (Token) Precedence() int
  3298  pkg go/token, method (Token) String() string
  3299  pkg go/token, type File struct
  3300  pkg go/token, type FileSet struct
  3301  pkg go/token, type Pos int
  3302  pkg go/token, type Position struct
  3303  pkg go/token, type Position struct, Column int
  3304  pkg go/token, type Position struct, Filename string
  3305  pkg go/token, type Position struct, Line int
  3306  pkg go/token, type Position struct, Offset int
  3307  pkg go/token, type Token int
  3308  pkg hash, type Hash interface { BlockSize, Reset, Size, Sum, Write }
  3309  pkg hash, type Hash interface, BlockSize() int
  3310  pkg hash, type Hash interface, Reset()
  3311  pkg hash, type Hash interface, Size() int
  3312  pkg hash, type Hash interface, Sum([]uint8) []uint8
  3313  pkg hash, type Hash interface, Write([]uint8) (int, error)
  3314  pkg hash, type Hash32 interface { BlockSize, Reset, Size, Sum, Sum32, Write }
  3315  pkg hash, type Hash32 interface, BlockSize() int
  3316  pkg hash, type Hash32 interface, Reset()
  3317  pkg hash, type Hash32 interface, Size() int
  3318  pkg hash, type Hash32 interface, Sum([]uint8) []uint8
  3319  pkg hash, type Hash32 interface, Sum32() uint32
  3320  pkg hash, type Hash32 interface, Write([]uint8) (int, error)
  3321  pkg hash, type Hash64 interface { BlockSize, Reset, Size, Sum, Sum64, Write }
  3322  pkg hash, type Hash64 interface, BlockSize() int
  3323  pkg hash, type Hash64 interface, Reset()
  3324  pkg hash, type Hash64 interface, Size() int
  3325  pkg hash, type Hash64 interface, Sum([]uint8) []uint8
  3326  pkg hash, type Hash64 interface, Sum64() uint64
  3327  pkg hash, type Hash64 interface, Write([]uint8) (int, error)
  3328  pkg hash/adler32, const Size ideal-int
  3329  pkg hash/adler32, func Checksum([]uint8) uint32
  3330  pkg hash/adler32, func New() hash.Hash32
  3331  pkg hash/crc32, const Castagnoli ideal-int
  3332  pkg hash/crc32, const IEEE ideal-int
  3333  pkg hash/crc32, const Koopman ideal-int
  3334  pkg hash/crc32, const Size ideal-int
  3335  pkg hash/crc32, func Checksum([]uint8, *Table) uint32
  3336  pkg hash/crc32, func ChecksumIEEE([]uint8) uint32
  3337  pkg hash/crc32, func MakeTable(uint32) *Table
  3338  pkg hash/crc32, func New(*Table) hash.Hash32
  3339  pkg hash/crc32, func NewIEEE() hash.Hash32
  3340  pkg hash/crc32, func Update(uint32, *Table, []uint8) uint32
  3341  pkg hash/crc32, type Table [256]uint32
  3342  pkg hash/crc32, var IEEETable *Table
  3343  pkg hash/crc64, const ECMA ideal-int
  3344  pkg hash/crc64, const ISO ideal-int
  3345  pkg hash/crc64, const Size ideal-int
  3346  pkg hash/crc64, func Checksum([]uint8, *Table) uint64
  3347  pkg hash/crc64, func MakeTable(uint64) *Table
  3348  pkg hash/crc64, func New(*Table) hash.Hash64
  3349  pkg hash/crc64, func Update(uint64, *Table, []uint8) uint64
  3350  pkg hash/crc64, type Table [256]uint64
  3351  pkg hash/fnv, func New32() hash.Hash32
  3352  pkg hash/fnv, func New32a() hash.Hash32
  3353  pkg hash/fnv, func New64() hash.Hash64
  3354  pkg hash/fnv, func New64a() hash.Hash64
  3355  pkg html, func EscapeString(string) string
  3356  pkg html, func UnescapeString(string) string
  3357  pkg html/template, const ErrAmbigContext ErrorCode
  3358  pkg html/template, const ErrBadHTML ErrorCode
  3359  pkg html/template, const ErrBranchEnd ErrorCode
  3360  pkg html/template, const ErrEndContext ErrorCode
  3361  pkg html/template, const ErrNoSuchTemplate ErrorCode
  3362  pkg html/template, const ErrOutputContext ErrorCode
  3363  pkg html/template, const ErrPartialCharset ErrorCode
  3364  pkg html/template, const ErrPartialEscape ErrorCode
  3365  pkg html/template, const ErrRangeLoopReentry ErrorCode
  3366  pkg html/template, const ErrSlashAmbig ErrorCode
  3367  pkg html/template, const OK ErrorCode
  3368  pkg html/template, func HTMLEscape(io.Writer, []uint8)
  3369  pkg html/template, func HTMLEscapeString(string) string
  3370  pkg html/template, func HTMLEscaper(...interface{}) string
  3371  pkg html/template, func JSEscape(io.Writer, []uint8)
  3372  pkg html/template, func JSEscapeString(string) string
  3373  pkg html/template, func JSEscaper(...interface{}) string
  3374  pkg html/template, func Must(*Template, error) *Template
  3375  pkg html/template, func New(string) *Template
  3376  pkg html/template, func ParseFiles(...string) (*Template, error)
  3377  pkg html/template, func ParseGlob(string) (*Template, error)
  3378  pkg html/template, func URLQueryEscaper(...interface{}) string
  3379  pkg html/template, method (*Error) Error() string
  3380  pkg html/template, method (*Template) AddParseTree(string, *parse.Tree) (*Template, error)
  3381  pkg html/template, method (*Template) Clone() (*Template, error)
  3382  pkg html/template, method (*Template) Delims(string, string) *Template
  3383  pkg html/template, method (*Template) Execute(io.Writer, interface{}) error
  3384  pkg html/template, method (*Template) ExecuteTemplate(io.Writer, string, interface{}) error
  3385  pkg html/template, method (*Template) Funcs(FuncMap) *Template
  3386  pkg html/template, method (*Template) Lookup(string) *Template
  3387  pkg html/template, method (*Template) Name() string
  3388  pkg html/template, method (*Template) New(string) *Template
  3389  pkg html/template, method (*Template) Parse(string) (*Template, error)
  3390  pkg html/template, method (*Template) ParseFiles(...string) (*Template, error)
  3391  pkg html/template, method (*Template) ParseGlob(string) (*Template, error)
  3392  pkg html/template, method (*Template) Templates() []*Template
  3393  pkg html/template, type CSS string
  3394  pkg html/template, type Error struct
  3395  pkg html/template, type Error struct, Description string
  3396  pkg html/template, type Error struct, ErrorCode ErrorCode
  3397  pkg html/template, type Error struct, Line int
  3398  pkg html/template, type Error struct, Name string
  3399  pkg html/template, type ErrorCode int
  3400  pkg html/template, type FuncMap map[string]interface{}
  3401  pkg html/template, type HTML string
  3402  pkg html/template, type HTMLAttr string
  3403  pkg html/template, type JS string
  3404  pkg html/template, type JSStr string
  3405  pkg html/template, type Template struct
  3406  pkg html/template, type URL string
  3407  pkg image, const YCbCrSubsampleRatio420 YCbCrSubsampleRatio
  3408  pkg image, const YCbCrSubsampleRatio422 YCbCrSubsampleRatio
  3409  pkg image, const YCbCrSubsampleRatio444 YCbCrSubsampleRatio
  3410  pkg image, func Decode(io.Reader) (Image, string, error)
  3411  pkg image, func DecodeConfig(io.Reader) (Config, string, error)
  3412  pkg image, func NewAlpha(Rectangle) *Alpha
  3413  pkg image, func NewAlpha16(Rectangle) *Alpha16
  3414  pkg image, func NewGray(Rectangle) *Gray
  3415  pkg image, func NewGray16(Rectangle) *Gray16
  3416  pkg image, func NewNRGBA(Rectangle) *NRGBA
  3417  pkg image, func NewNRGBA64(Rectangle) *NRGBA64
  3418  pkg image, func NewPaletted(Rectangle, color.Palette) *Paletted
  3419  pkg image, func NewRGBA(Rectangle) *RGBA
  3420  pkg image, func NewRGBA64(Rectangle) *RGBA64
  3421  pkg image, func NewUniform(color.Color) *Uniform
  3422  pkg image, func NewYCbCr(Rectangle, YCbCrSubsampleRatio) *YCbCr
  3423  pkg image, func Pt(int, int) Point
  3424  pkg image, func Rect(int, int, int, int) Rectangle
  3425  pkg image, func RegisterFormat(string, string, func(io.Reader) (Image, error), func(io.Reader) (Config, error))
  3426  pkg image, method (*Alpha) At(int, int) color.Color
  3427  pkg image, method (*Alpha) Bounds() Rectangle
  3428  pkg image, method (*Alpha) ColorModel() color.Model
  3429  pkg image, method (*Alpha) Opaque() bool
  3430  pkg image, method (*Alpha) PixOffset(int, int) int
  3431  pkg image, method (*Alpha) Set(int, int, color.Color)
  3432  pkg image, method (*Alpha) SetAlpha(int, int, color.Alpha)
  3433  pkg image, method (*Alpha) SubImage(Rectangle) Image
  3434  pkg image, method (*Alpha16) At(int, int) color.Color
  3435  pkg image, method (*Alpha16) Bounds() Rectangle
  3436  pkg image, method (*Alpha16) ColorModel() color.Model
  3437  pkg image, method (*Alpha16) Opaque() bool
  3438  pkg image, method (*Alpha16) PixOffset(int, int) int
  3439  pkg image, method (*Alpha16) Set(int, int, color.Color)
  3440  pkg image, method (*Alpha16) SetAlpha16(int, int, color.Alpha16)
  3441  pkg image, method (*Alpha16) SubImage(Rectangle) Image
  3442  pkg image, method (*Gray) At(int, int) color.Color
  3443  pkg image, method (*Gray) Bounds() Rectangle
  3444  pkg image, method (*Gray) ColorModel() color.Model
  3445  pkg image, method (*Gray) Opaque() bool
  3446  pkg image, method (*Gray) PixOffset(int, int) int
  3447  pkg image, method (*Gray) Set(int, int, color.Color)
  3448  pkg image, method (*Gray) SetGray(int, int, color.Gray)
  3449  pkg image, method (*Gray) SubImage(Rectangle) Image
  3450  pkg image, method (*Gray16) At(int, int) color.Color
  3451  pkg image, method (*Gray16) Bounds() Rectangle
  3452  pkg image, method (*Gray16) ColorModel() color.Model
  3453  pkg image, method (*Gray16) Opaque() bool
  3454  pkg image, method (*Gray16) PixOffset(int, int) int
  3455  pkg image, method (*Gray16) Set(int, int, color.Color)
  3456  pkg image, method (*Gray16) SetGray16(int, int, color.Gray16)
  3457  pkg image, method (*Gray16) SubImage(Rectangle) Image
  3458  pkg image, method (*NRGBA) At(int, int) color.Color
  3459  pkg image, method (*NRGBA) Bounds() Rectangle
  3460  pkg image, method (*NRGBA) ColorModel() color.Model
  3461  pkg image, method (*NRGBA) Opaque() bool
  3462  pkg image, method (*NRGBA) PixOffset(int, int) int
  3463  pkg image, method (*NRGBA) Set(int, int, color.Color)
  3464  pkg image, method (*NRGBA) SetNRGBA(int, int, color.NRGBA)
  3465  pkg image, method (*NRGBA) SubImage(Rectangle) Image
  3466  pkg image, method (*NRGBA64) At(int, int) color.Color
  3467  pkg image, method (*NRGBA64) Bounds() Rectangle
  3468  pkg image, method (*NRGBA64) ColorModel() color.Model
  3469  pkg image, method (*NRGBA64) Opaque() bool
  3470  pkg image, method (*NRGBA64) PixOffset(int, int) int
  3471  pkg image, method (*NRGBA64) Set(int, int, color.Color)
  3472  pkg image, method (*NRGBA64) SetNRGBA64(int, int, color.NRGBA64)
  3473  pkg image, method (*NRGBA64) SubImage(Rectangle) Image
  3474  pkg image, method (*Paletted) At(int, int) color.Color
  3475  pkg image, method (*Paletted) Bounds() Rectangle
  3476  pkg image, method (*Paletted) ColorIndexAt(int, int) uint8
  3477  pkg image, method (*Paletted) ColorModel() color.Model
  3478  pkg image, method (*Paletted) Opaque() bool
  3479  pkg image, method (*Paletted) PixOffset(int, int) int
  3480  pkg image, method (*Paletted) Set(int, int, color.Color)
  3481  pkg image, method (*Paletted) SetColorIndex(int, int, uint8)
  3482  pkg image, method (*Paletted) SubImage(Rectangle) Image
  3483  pkg image, method (*RGBA) At(int, int) color.Color
  3484  pkg image, method (*RGBA) Bounds() Rectangle
  3485  pkg image, method (*RGBA) ColorModel() color.Model
  3486  pkg image, method (*RGBA) Opaque() bool
  3487  pkg image, method (*RGBA) PixOffset(int, int) int
  3488  pkg image, method (*RGBA) Set(int, int, color.Color)
  3489  pkg image, method (*RGBA) SetRGBA(int, int, color.RGBA)
  3490  pkg image, method (*RGBA) SubImage(Rectangle) Image
  3491  pkg image, method (*RGBA64) At(int, int) color.Color
  3492  pkg image, method (*RGBA64) Bounds() Rectangle
  3493  pkg image, method (*RGBA64) ColorModel() color.Model
  3494  pkg image, method (*RGBA64) Opaque() bool
  3495  pkg image, method (*RGBA64) PixOffset(int, int) int
  3496  pkg image, method (*RGBA64) Set(int, int, color.Color)
  3497  pkg image, method (*RGBA64) SetRGBA64(int, int, color.RGBA64)
  3498  pkg image, method (*RGBA64) SubImage(Rectangle) Image
  3499  pkg image, method (*Uniform) At(int, int) color.Color
  3500  pkg image, method (*Uniform) Bounds() Rectangle
  3501  pkg image, method (*Uniform) ColorModel() color.Model
  3502  pkg image, method (*Uniform) Convert(color.Color) color.Color
  3503  pkg image, method (*Uniform) Opaque() bool
  3504  pkg image, method (*Uniform) RGBA() (uint32, uint32, uint32, uint32)
  3505  pkg image, method (*YCbCr) At(int, int) color.Color
  3506  pkg image, method (*YCbCr) Bounds() Rectangle
  3507  pkg image, method (*YCbCr) COffset(int, int) int
  3508  pkg image, method (*YCbCr) ColorModel() color.Model
  3509  pkg image, method (*YCbCr) Opaque() bool
  3510  pkg image, method (*YCbCr) SubImage(Rectangle) Image
  3511  pkg image, method (*YCbCr) YOffset(int, int) int
  3512  pkg image, method (Point) Add(Point) Point
  3513  pkg image, method (Point) Div(int) Point
  3514  pkg image, method (Point) Eq(Point) bool
  3515  pkg image, method (Point) In(Rectangle) bool
  3516  pkg image, method (Point) Mod(Rectangle) Point
  3517  pkg image, method (Point) Mul(int) Point
  3518  pkg image, method (Point) String() string
  3519  pkg image, method (Point) Sub(Point) Point
  3520  pkg image, method (Rectangle) Add(Point) Rectangle
  3521  pkg image, method (Rectangle) Canon() Rectangle
  3522  pkg image, method (Rectangle) Dx() int
  3523  pkg image, method (Rectangle) Dy() int
  3524  pkg image, method (Rectangle) Empty() bool
  3525  pkg image, method (Rectangle) Eq(Rectangle) bool
  3526  pkg image, method (Rectangle) In(Rectangle) bool
  3527  pkg image, method (Rectangle) Inset(int) Rectangle
  3528  pkg image, method (Rectangle) Intersect(Rectangle) Rectangle
  3529  pkg image, method (Rectangle) Overlaps(Rectangle) bool
  3530  pkg image, method (Rectangle) Size() Point
  3531  pkg image, method (Rectangle) String() string
  3532  pkg image, method (Rectangle) Sub(Point) Rectangle
  3533  pkg image, method (Rectangle) Union(Rectangle) Rectangle
  3534  pkg image, method (YCbCrSubsampleRatio) String() string
  3535  pkg image, type Alpha struct
  3536  pkg image, type Alpha struct, Pix []uint8
  3537  pkg image, type Alpha struct, Rect Rectangle
  3538  pkg image, type Alpha struct, Stride int
  3539  pkg image, type Alpha16 struct
  3540  pkg image, type Alpha16 struct, Pix []uint8
  3541  pkg image, type Alpha16 struct, Rect Rectangle
  3542  pkg image, type Alpha16 struct, Stride int
  3543  pkg image, type Config struct
  3544  pkg image, type Config struct, ColorModel color.Model
  3545  pkg image, type Config struct, Height int
  3546  pkg image, type Config struct, Width int
  3547  pkg image, type Gray struct
  3548  pkg image, type Gray struct, Pix []uint8
  3549  pkg image, type Gray struct, Rect Rectangle
  3550  pkg image, type Gray struct, Stride int
  3551  pkg image, type Gray16 struct
  3552  pkg image, type Gray16 struct, Pix []uint8
  3553  pkg image, type Gray16 struct, Rect Rectangle
  3554  pkg image, type Gray16 struct, Stride int
  3555  pkg image, type Image interface { At, Bounds, ColorModel }
  3556  pkg image, type Image interface, At(int, int) color.Color
  3557  pkg image, type Image interface, Bounds() Rectangle
  3558  pkg image, type Image interface, ColorModel() color.Model
  3559  pkg image, type NRGBA struct
  3560  pkg image, type NRGBA struct, Pix []uint8
  3561  pkg image, type NRGBA struct, Rect Rectangle
  3562  pkg image, type NRGBA struct, Stride int
  3563  pkg image, type NRGBA64 struct
  3564  pkg image, type NRGBA64 struct, Pix []uint8
  3565  pkg image, type NRGBA64 struct, Rect Rectangle
  3566  pkg image, type NRGBA64 struct, Stride int
  3567  pkg image, type Paletted struct
  3568  pkg image, type Paletted struct, Palette color.Palette
  3569  pkg image, type Paletted struct, Pix []uint8
  3570  pkg image, type Paletted struct, Rect Rectangle
  3571  pkg image, type Paletted struct, Stride int
  3572  pkg image, type PalettedImage interface { At, Bounds, ColorIndexAt, ColorModel }
  3573  pkg image, type PalettedImage interface, At(int, int) color.Color
  3574  pkg image, type PalettedImage interface, Bounds() Rectangle
  3575  pkg image, type PalettedImage interface, ColorIndexAt(int, int) uint8
  3576  pkg image, type PalettedImage interface, ColorModel() color.Model
  3577  pkg image, type Point struct
  3578  pkg image, type Point struct, X int
  3579  pkg image, type Point struct, Y int
  3580  pkg image, type RGBA struct
  3581  pkg image, type RGBA struct, Pix []uint8
  3582  pkg image, type RGBA struct, Rect Rectangle
  3583  pkg image, type RGBA struct, Stride int
  3584  pkg image, type RGBA64 struct
  3585  pkg image, type RGBA64 struct, Pix []uint8
  3586  pkg image, type RGBA64 struct, Rect Rectangle
  3587  pkg image, type RGBA64 struct, Stride int
  3588  pkg image, type Rectangle struct
  3589  pkg image, type Rectangle struct, Max Point
  3590  pkg image, type Rectangle struct, Min Point
  3591  pkg image, type Uniform struct
  3592  pkg image, type Uniform struct, C color.Color
  3593  pkg image, type YCbCr struct
  3594  pkg image, type YCbCr struct, CStride int
  3595  pkg image, type YCbCr struct, Cb []uint8
  3596  pkg image, type YCbCr struct, Cr []uint8
  3597  pkg image, type YCbCr struct, Rect Rectangle
  3598  pkg image, type YCbCr struct, SubsampleRatio YCbCrSubsampleRatio
  3599  pkg image, type YCbCr struct, Y []uint8
  3600  pkg image, type YCbCr struct, YStride int
  3601  pkg image, type YCbCrSubsampleRatio int
  3602  pkg image, var Black *Uniform
  3603  pkg image, var ErrFormat error
  3604  pkg image, var Opaque *Uniform
  3605  pkg image, var Transparent *Uniform
  3606  pkg image, var White *Uniform
  3607  pkg image, var ZP Point
  3608  pkg image, var ZR Rectangle
  3609  pkg image/color, func ModelFunc(func(Color) Color) Model
  3610  pkg image/color, func RGBToYCbCr(uint8, uint8, uint8) (uint8, uint8, uint8)
  3611  pkg image/color, func YCbCrToRGB(uint8, uint8, uint8) (uint8, uint8, uint8)
  3612  pkg image/color, method (Alpha) RGBA() (uint32, uint32, uint32, uint32)
  3613  pkg image/color, method (Alpha16) RGBA() (uint32, uint32, uint32, uint32)
  3614  pkg image/color, method (Gray) RGBA() (uint32, uint32, uint32, uint32)
  3615  pkg image/color, method (Gray16) RGBA() (uint32, uint32, uint32, uint32)
  3616  pkg image/color, method (NRGBA) RGBA() (uint32, uint32, uint32, uint32)
  3617  pkg image/color, method (NRGBA64) RGBA() (uint32, uint32, uint32, uint32)
  3618  pkg image/color, method (Palette) Convert(Color) Color
  3619  pkg image/color, method (Palette) Index(Color) int
  3620  pkg image/color, method (RGBA) RGBA() (uint32, uint32, uint32, uint32)
  3621  pkg image/color, method (RGBA64) RGBA() (uint32, uint32, uint32, uint32)
  3622  pkg image/color, method (YCbCr) RGBA() (uint32, uint32, uint32, uint32)
  3623  pkg image/color, type Alpha struct
  3624  pkg image/color, type Alpha struct, A uint8
  3625  pkg image/color, type Alpha16 struct
  3626  pkg image/color, type Alpha16 struct, A uint16
  3627  pkg image/color, type Color interface { RGBA }
  3628  pkg image/color, type Color interface, RGBA() (uint32, uint32, uint32, uint32)
  3629  pkg image/color, type Gray struct
  3630  pkg image/color, type Gray struct, Y uint8
  3631  pkg image/color, type Gray16 struct
  3632  pkg image/color, type Gray16 struct, Y uint16
  3633  pkg image/color, type Model interface { Convert }
  3634  pkg image/color, type Model interface, Convert(Color) Color
  3635  pkg image/color, type NRGBA struct
  3636  pkg image/color, type NRGBA struct, A uint8
  3637  pkg image/color, type NRGBA struct, B uint8
  3638  pkg image/color, type NRGBA struct, G uint8
  3639  pkg image/color, type NRGBA struct, R uint8
  3640  pkg image/color, type NRGBA64 struct
  3641  pkg image/color, type NRGBA64 struct, A uint16
  3642  pkg image/color, type NRGBA64 struct, B uint16
  3643  pkg image/color, type NRGBA64 struct, G uint16
  3644  pkg image/color, type NRGBA64 struct, R uint16
  3645  pkg image/color, type Palette []Color
  3646  pkg image/color, type RGBA struct
  3647  pkg image/color, type RGBA struct, A uint8
  3648  pkg image/color, type RGBA struct, B uint8
  3649  pkg image/color, type RGBA struct, G uint8
  3650  pkg image/color, type RGBA struct, R uint8
  3651  pkg image/color, type RGBA64 struct
  3652  pkg image/color, type RGBA64 struct, A uint16
  3653  pkg image/color, type RGBA64 struct, B uint16
  3654  pkg image/color, type RGBA64 struct, G uint16
  3655  pkg image/color, type RGBA64 struct, R uint16
  3656  pkg image/color, type YCbCr struct
  3657  pkg image/color, type YCbCr struct, Cb uint8
  3658  pkg image/color, type YCbCr struct, Cr uint8
  3659  pkg image/color, type YCbCr struct, Y uint8
  3660  pkg image/color, var Alpha16Model Model
  3661  pkg image/color, var AlphaModel Model
  3662  pkg image/color, var Black Gray16
  3663  pkg image/color, var Gray16Model Model
  3664  pkg image/color, var GrayModel Model
  3665  pkg image/color, var NRGBA64Model Model
  3666  pkg image/color, var NRGBAModel Model
  3667  pkg image/color, var Opaque Alpha16
  3668  pkg image/color, var RGBA64Model Model
  3669  pkg image/color, var RGBAModel Model
  3670  pkg image/color, var Transparent Alpha16
  3671  pkg image/color, var White Gray16
  3672  pkg image/color, var YCbCrModel Model
  3673  pkg image/draw, const Over Op
  3674  pkg image/draw, const Src Op
  3675  pkg image/draw, func Draw(Image, image.Rectangle, image.Image, image.Point, Op)
  3676  pkg image/draw, func DrawMask(Image, image.Rectangle, image.Image, image.Point, image.Image, image.Point, Op)
  3677  pkg image/draw, type Image interface { At, Bounds, ColorModel, Set }
  3678  pkg image/draw, type Image interface, At(int, int) color.Color
  3679  pkg image/draw, type Image interface, Bounds() image.Rectangle
  3680  pkg image/draw, type Image interface, ColorModel() color.Model
  3681  pkg image/draw, type Image interface, Set(int, int, color.Color)
  3682  pkg image/draw, type Op int
  3683  pkg image/gif, func Decode(io.Reader) (image.Image, error)
  3684  pkg image/gif, func DecodeAll(io.Reader) (*GIF, error)
  3685  pkg image/gif, func DecodeConfig(io.Reader) (image.Config, error)
  3686  pkg image/gif, type GIF struct
  3687  pkg image/gif, type GIF struct, Delay []int
  3688  pkg image/gif, type GIF struct, Image []*image.Paletted
  3689  pkg image/gif, type GIF struct, LoopCount int
  3690  pkg image/jpeg, const DefaultQuality ideal-int
  3691  pkg image/jpeg, func Decode(io.Reader) (image.Image, error)
  3692  pkg image/jpeg, func DecodeConfig(io.Reader) (image.Config, error)
  3693  pkg image/jpeg, func Encode(io.Writer, image.Image, *Options) error
  3694  pkg image/jpeg, method (FormatError) Error() string
  3695  pkg image/jpeg, method (UnsupportedError) Error() string
  3696  pkg image/jpeg, type FormatError string
  3697  pkg image/jpeg, type Options struct
  3698  pkg image/jpeg, type Options struct, Quality int
  3699  pkg image/jpeg, type Reader interface { Read, ReadByte }
  3700  pkg image/jpeg, type Reader interface, Read([]uint8) (int, error)
  3701  pkg image/jpeg, type Reader interface, ReadByte() (uint8, error)
  3702  pkg image/jpeg, type UnsupportedError string
  3703  pkg image/png, func Decode(io.Reader) (image.Image, error)
  3704  pkg image/png, func DecodeConfig(io.Reader) (image.Config, error)
  3705  pkg image/png, func Encode(io.Writer, image.Image) error
  3706  pkg image/png, method (FormatError) Error() string
  3707  pkg image/png, method (UnsupportedError) Error() string
  3708  pkg image/png, type FormatError string
  3709  pkg image/png, type UnsupportedError string
  3710  pkg index/suffixarray, func New([]uint8) *Index
  3711  pkg index/suffixarray, method (*Index) Bytes() []uint8
  3712  pkg index/suffixarray, method (*Index) FindAllIndex(*regexp.Regexp, int) [][]int
  3713  pkg index/suffixarray, method (*Index) Lookup([]uint8, int) []int
  3714  pkg index/suffixarray, method (*Index) Read(io.Reader) error
  3715  pkg index/suffixarray, method (*Index) Write(io.Writer) error
  3716  pkg index/suffixarray, type Index struct
  3717  pkg io, func Copy(Writer, Reader) (int64, error)
  3718  pkg io, func CopyN(Writer, Reader, int64) (int64, error)
  3719  pkg io, func LimitReader(Reader, int64) Reader
  3720  pkg io, func MultiReader(...Reader) Reader
  3721  pkg io, func MultiWriter(...Writer) Writer
  3722  pkg io, func NewSectionReader(ReaderAt, int64, int64) *SectionReader
  3723  pkg io, func Pipe() (*PipeReader, *PipeWriter)
  3724  pkg io, func ReadAtLeast(Reader, []uint8, int) (int, error)
  3725  pkg io, func ReadFull(Reader, []uint8) (int, error)
  3726  pkg io, func TeeReader(Reader, Writer) Reader
  3727  pkg io, func WriteString(Writer, string) (int, error)
  3728  pkg io, method (*LimitedReader) Read([]uint8) (int, error)
  3729  pkg io, method (*PipeReader) Close() error
  3730  pkg io, method (*PipeReader) CloseWithError(error) error
  3731  pkg io, method (*PipeReader) Read([]uint8) (int, error)
  3732  pkg io, method (*PipeWriter) Close() error
  3733  pkg io, method (*PipeWriter) CloseWithError(error) error
  3734  pkg io, method (*PipeWriter) Write([]uint8) (int, error)
  3735  pkg io, method (*SectionReader) Read([]uint8) (int, error)
  3736  pkg io, method (*SectionReader) ReadAt([]uint8, int64) (int, error)
  3737  pkg io, method (*SectionReader) Seek(int64, int) (int64, error)
  3738  pkg io, method (*SectionReader) Size() int64
  3739  pkg io, type ByteReader interface { ReadByte }
  3740  pkg io, type ByteReader interface, ReadByte() (uint8, error)
  3741  pkg io, type ByteScanner interface { ReadByte, UnreadByte }
  3742  pkg io, type ByteScanner interface, ReadByte() (uint8, error)
  3743  pkg io, type ByteScanner interface, UnreadByte() error
  3744  pkg io, type Closer interface { Close }
  3745  pkg io, type Closer interface, Close() error
  3746  pkg io, type LimitedReader struct
  3747  pkg io, type LimitedReader struct, N int64
  3748  pkg io, type LimitedReader struct, R Reader
  3749  pkg io, type PipeReader struct
  3750  pkg io, type PipeWriter struct
  3751  pkg io, type ReadCloser interface { Close, Read }
  3752  pkg io, type ReadCloser interface, Close() error
  3753  pkg io, type ReadCloser interface, Read([]uint8) (int, error)
  3754  pkg io, type ReadSeeker interface { Read, Seek }
  3755  pkg io, type ReadSeeker interface, Read([]uint8) (int, error)
  3756  pkg io, type ReadSeeker interface, Seek(int64, int) (int64, error)
  3757  pkg io, type ReadWriteCloser interface { Close, Read, Write }
  3758  pkg io, type ReadWriteCloser interface, Close() error
  3759  pkg io, type ReadWriteCloser interface, Read([]uint8) (int, error)
  3760  pkg io, type ReadWriteCloser interface, Write([]uint8) (int, error)
  3761  pkg io, type ReadWriteSeeker interface { Read, Seek, Write }
  3762  pkg io, type ReadWriteSeeker interface, Read([]uint8) (int, error)
  3763  pkg io, type ReadWriteSeeker interface, Seek(int64, int) (int64, error)
  3764  pkg io, type ReadWriteSeeker interface, Write([]uint8) (int, error)
  3765  pkg io, type ReadWriter interface { Read, Write }
  3766  pkg io, type ReadWriter interface, Read([]uint8) (int, error)
  3767  pkg io, type ReadWriter interface, Write([]uint8) (int, error)
  3768  pkg io, type Reader interface { Read }
  3769  pkg io, type Reader interface, Read([]uint8) (int, error)
  3770  pkg io, type ReaderAt interface { ReadAt }
  3771  pkg io, type ReaderAt interface, ReadAt([]uint8, int64) (int, error)
  3772  pkg io, type ReaderFrom interface { ReadFrom }
  3773  pkg io, type ReaderFrom interface, ReadFrom(Reader) (int64, error)
  3774  pkg io, type RuneReader interface { ReadRune }
  3775  pkg io, type RuneReader interface, ReadRune() (int32, int, error)
  3776  pkg io, type RuneScanner interface { ReadRune, UnreadRune }
  3777  pkg io, type RuneScanner interface, ReadRune() (int32, int, error)
  3778  pkg io, type RuneScanner interface, UnreadRune() error
  3779  pkg io, type SectionReader struct
  3780  pkg io, type Seeker interface { Seek }
  3781  pkg io, type Seeker interface, Seek(int64, int) (int64, error)
  3782  pkg io, type WriteCloser interface { Close, Write }
  3783  pkg io, type WriteCloser interface, Close() error
  3784  pkg io, type WriteCloser interface, Write([]uint8) (int, error)
  3785  pkg io, type WriteSeeker interface { Seek, Write }
  3786  pkg io, type WriteSeeker interface, Seek(int64, int) (int64, error)
  3787  pkg io, type WriteSeeker interface, Write([]uint8) (int, error)
  3788  pkg io, type Writer interface { Write }
  3789  pkg io, type Writer interface, Write([]uint8) (int, error)
  3790  pkg io, type WriterAt interface { WriteAt }
  3791  pkg io, type WriterAt interface, WriteAt([]uint8, int64) (int, error)
  3792  pkg io, type WriterTo interface { WriteTo }
  3793  pkg io, type WriterTo interface, WriteTo(Writer) (int64, error)
  3794  pkg io, var EOF error
  3795  pkg io, var ErrClosedPipe error
  3796  pkg io, var ErrShortBuffer error
  3797  pkg io, var ErrShortWrite error
  3798  pkg io, var ErrUnexpectedEOF error
  3799  pkg io/ioutil, func NopCloser(io.Reader) io.ReadCloser
  3800  pkg io/ioutil, func ReadAll(io.Reader) ([]uint8, error)
  3801  pkg io/ioutil, func ReadDir(string) ([]os.FileInfo, error)
  3802  pkg io/ioutil, func ReadFile(string) ([]uint8, error)
  3803  pkg io/ioutil, func TempDir(string, string) (string, error)
  3804  pkg io/ioutil, func TempFile(string, string) (*os.File, error)
  3805  pkg io/ioutil, func WriteFile(string, []uint8, os.FileMode) error
  3806  pkg io/ioutil, var Discard io.Writer
  3807  pkg log, const Ldate ideal-int
  3808  pkg log, const Llongfile ideal-int
  3809  pkg log, const Lmicroseconds ideal-int
  3810  pkg log, const Lshortfile ideal-int
  3811  pkg log, const LstdFlags ideal-int
  3812  pkg log, const Ltime ideal-int
  3813  pkg log, func Fatal(...interface{})
  3814  pkg log, func Fatalf(string, ...interface{})
  3815  pkg log, func Fatalln(...interface{})
  3816  pkg log, func Flags() int
  3817  pkg log, func New(io.Writer, string, int) *Logger
  3818  pkg log, func Panic(...interface{})
  3819  pkg log, func Panicf(string, ...interface{})
  3820  pkg log, func Panicln(...interface{})
  3821  pkg log, func Prefix() string
  3822  pkg log, func Print(...interface{})
  3823  pkg log, func Printf(string, ...interface{})
  3824  pkg log, func Println(...interface{})
  3825  pkg log, func SetFlags(int)
  3826  pkg log, func SetOutput(io.Writer)
  3827  pkg log, func SetPrefix(string)
  3828  pkg log, method (*Logger) Fatal(...interface{})
  3829  pkg log, method (*Logger) Fatalf(string, ...interface{})
  3830  pkg log, method (*Logger) Fatalln(...interface{})
  3831  pkg log, method (*Logger) Flags() int
  3832  pkg log, method (*Logger) Output(int, string) error
  3833  pkg log, method (*Logger) Panic(...interface{})
  3834  pkg log, method (*Logger) Panicf(string, ...interface{})
  3835  pkg log, method (*Logger) Panicln(...interface{})
  3836  pkg log, method (*Logger) Prefix() string
  3837  pkg log, method (*Logger) Print(...interface{})
  3838  pkg log, method (*Logger) Printf(string, ...interface{})
  3839  pkg log, method (*Logger) Println(...interface{})
  3840  pkg log, method (*Logger) SetFlags(int)
  3841  pkg log, method (*Logger) SetPrefix(string)
  3842  pkg log, type Logger struct
  3843  pkg log/syslog (darwin-386), const LOG_ALERT Priority
  3844  pkg log/syslog (darwin-386), const LOG_CRIT Priority
  3845  pkg log/syslog (darwin-386), const LOG_DEBUG Priority
  3846  pkg log/syslog (darwin-386), const LOG_EMERG Priority
  3847  pkg log/syslog (darwin-386), const LOG_ERR Priority
  3848  pkg log/syslog (darwin-386), const LOG_INFO Priority
  3849  pkg log/syslog (darwin-386), const LOG_NOTICE Priority
  3850  pkg log/syslog (darwin-386), const LOG_WARNING Priority
  3851  pkg log/syslog (darwin-386), func Dial(string, string, Priority, string) (*Writer, error)
  3852  pkg log/syslog (darwin-386), func New(Priority, string) (*Writer, error)
  3853  pkg log/syslog (darwin-386), func NewLogger(Priority, int) (*log.Logger, error)
  3854  pkg log/syslog (darwin-386), method (*Writer) Alert(string) error
  3855  pkg log/syslog (darwin-386), method (*Writer) Close() error
  3856  pkg log/syslog (darwin-386), method (*Writer) Crit(string) error
  3857  pkg log/syslog (darwin-386), method (*Writer) Debug(string) error
  3858  pkg log/syslog (darwin-386), method (*Writer) Emerg(string) error
  3859  pkg log/syslog (darwin-386), method (*Writer) Err(string) error
  3860  pkg log/syslog (darwin-386), method (*Writer) Info(string) error
  3861  pkg log/syslog (darwin-386), method (*Writer) Notice(string) error
  3862  pkg log/syslog (darwin-386), method (*Writer) Warning(string) error
  3863  pkg log/syslog (darwin-386), method (*Writer) Write([]uint8) (int, error)
  3864  pkg log/syslog (darwin-386), type Priority int
  3865  pkg log/syslog (darwin-386), type Writer struct
  3866  pkg log/syslog (darwin-386-cgo), const LOG_ALERT Priority
  3867  pkg log/syslog (darwin-386-cgo), const LOG_CRIT Priority
  3868  pkg log/syslog (darwin-386-cgo), const LOG_DEBUG Priority
  3869  pkg log/syslog (darwin-386-cgo), const LOG_EMERG Priority
  3870  pkg log/syslog (darwin-386-cgo), const LOG_ERR Priority
  3871  pkg log/syslog (darwin-386-cgo), const LOG_INFO Priority
  3872  pkg log/syslog (darwin-386-cgo), const LOG_NOTICE Priority
  3873  pkg log/syslog (darwin-386-cgo), const LOG_WARNING Priority
  3874  pkg log/syslog (darwin-386-cgo), func Dial(string, string, Priority, string) (*Writer, error)
  3875  pkg log/syslog (darwin-386-cgo), func New(Priority, string) (*Writer, error)
  3876  pkg log/syslog (darwin-386-cgo), func NewLogger(Priority, int) (*log.Logger, error)
  3877  pkg log/syslog (darwin-386-cgo), method (*Writer) Alert(string) error
  3878  pkg log/syslog (darwin-386-cgo), method (*Writer) Close() error
  3879  pkg log/syslog (darwin-386-cgo), method (*Writer) Crit(string) error
  3880  pkg log/syslog (darwin-386-cgo), method (*Writer) Debug(string) error
  3881  pkg log/syslog (darwin-386-cgo), method (*Writer) Emerg(string) error
  3882  pkg log/syslog (darwin-386-cgo), method (*Writer) Err(string) error
  3883  pkg log/syslog (darwin-386-cgo), method (*Writer) Info(string) error
  3884  pkg log/syslog (darwin-386-cgo), method (*Writer) Notice(string) error
  3885  pkg log/syslog (darwin-386-cgo), method (*Writer) Warning(string) error
  3886  pkg log/syslog (darwin-386-cgo), method (*Writer) Write([]uint8) (int, error)
  3887  pkg log/syslog (darwin-386-cgo), type Priority int
  3888  pkg log/syslog (darwin-386-cgo), type Writer struct
  3889  pkg log/syslog (darwin-amd64), const LOG_ALERT Priority
  3890  pkg log/syslog (darwin-amd64), const LOG_CRIT Priority
  3891  pkg log/syslog (darwin-amd64), const LOG_DEBUG Priority
  3892  pkg log/syslog (darwin-amd64), const LOG_EMERG Priority
  3893  pkg log/syslog (darwin-amd64), const LOG_ERR Priority
  3894  pkg log/syslog (darwin-amd64), const LOG_INFO Priority
  3895  pkg log/syslog (darwin-amd64), const LOG_NOTICE Priority
  3896  pkg log/syslog (darwin-amd64), const LOG_WARNING Priority
  3897  pkg log/syslog (darwin-amd64), func Dial(string, string, Priority, string) (*Writer, error)
  3898  pkg log/syslog (darwin-amd64), func New(Priority, string) (*Writer, error)
  3899  pkg log/syslog (darwin-amd64), func NewLogger(Priority, int) (*log.Logger, error)
  3900  pkg log/syslog (darwin-amd64), method (*Writer) Alert(string) error
  3901  pkg log/syslog (darwin-amd64), method (*Writer) Close() error
  3902  pkg log/syslog (darwin-amd64), method (*Writer) Crit(string) error
  3903  pkg log/syslog (darwin-amd64), method (*Writer) Debug(string) error
  3904  pkg log/syslog (darwin-amd64), method (*Writer) Emerg(string) error
  3905  pkg log/syslog (darwin-amd64), method (*Writer) Err(string) error
  3906  pkg log/syslog (darwin-amd64), method (*Writer) Info(string) error
  3907  pkg log/syslog (darwin-amd64), method (*Writer) Notice(string) error
  3908  pkg log/syslog (darwin-amd64), method (*Writer) Warning(string) error
  3909  pkg log/syslog (darwin-amd64), method (*Writer) Write([]uint8) (int, error)
  3910  pkg log/syslog (darwin-amd64), type Priority int
  3911  pkg log/syslog (darwin-amd64), type Writer struct
  3912  pkg log/syslog (darwin-amd64-cgo), const LOG_ALERT Priority
  3913  pkg log/syslog (darwin-amd64-cgo), const LOG_CRIT Priority
  3914  pkg log/syslog (darwin-amd64-cgo), const LOG_DEBUG Priority
  3915  pkg log/syslog (darwin-amd64-cgo), const LOG_EMERG Priority
  3916  pkg log/syslog (darwin-amd64-cgo), const LOG_ERR Priority
  3917  pkg log/syslog (darwin-amd64-cgo), const LOG_INFO Priority
  3918  pkg log/syslog (darwin-amd64-cgo), const LOG_NOTICE Priority
  3919  pkg log/syslog (darwin-amd64-cgo), const LOG_WARNING Priority
  3920  pkg log/syslog (darwin-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
  3921  pkg log/syslog (darwin-amd64-cgo), func New(Priority, string) (*Writer, error)
  3922  pkg log/syslog (darwin-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
  3923  pkg log/syslog (darwin-amd64-cgo), method (*Writer) Alert(string) error
  3924  pkg log/syslog (darwin-amd64-cgo), method (*Writer) Close() error
  3925  pkg log/syslog (darwin-amd64-cgo), method (*Writer) Crit(string) error
  3926  pkg log/syslog (darwin-amd64-cgo), method (*Writer) Debug(string) error
  3927  pkg log/syslog (darwin-amd64-cgo), method (*Writer) Emerg(string) error
  3928  pkg log/syslog (darwin-amd64-cgo), method (*Writer) Err(string) error
  3929  pkg log/syslog (darwin-amd64-cgo), method (*Writer) Info(string) error
  3930  pkg log/syslog (darwin-amd64-cgo), method (*Writer) Notice(string) error
  3931  pkg log/syslog (darwin-amd64-cgo), method (*Writer) Warning(string) error
  3932  pkg log/syslog (darwin-amd64-cgo), method (*Writer) Write([]uint8) (int, error)
  3933  pkg log/syslog (darwin-amd64-cgo), type Priority int
  3934  pkg log/syslog (darwin-amd64-cgo), type Writer struct
  3935  pkg log/syslog (freebsd-386), const LOG_ALERT Priority
  3936  pkg log/syslog (freebsd-386), const LOG_CRIT Priority
  3937  pkg log/syslog (freebsd-386), const LOG_DEBUG Priority
  3938  pkg log/syslog (freebsd-386), const LOG_EMERG Priority
  3939  pkg log/syslog (freebsd-386), const LOG_ERR Priority
  3940  pkg log/syslog (freebsd-386), const LOG_INFO Priority
  3941  pkg log/syslog (freebsd-386), const LOG_NOTICE Priority
  3942  pkg log/syslog (freebsd-386), const LOG_WARNING Priority
  3943  pkg log/syslog (freebsd-386), func Dial(string, string, Priority, string) (*Writer, error)
  3944  pkg log/syslog (freebsd-386), func New(Priority, string) (*Writer, error)
  3945  pkg log/syslog (freebsd-386), func NewLogger(Priority, int) (*log.Logger, error)
  3946  pkg log/syslog (freebsd-386), method (*Writer) Alert(string) error
  3947  pkg log/syslog (freebsd-386), method (*Writer) Close() error
  3948  pkg log/syslog (freebsd-386), method (*Writer) Crit(string) error
  3949  pkg log/syslog (freebsd-386), method (*Writer) Debug(string) error
  3950  pkg log/syslog (freebsd-386), method (*Writer) Emerg(string) error
  3951  pkg log/syslog (freebsd-386), method (*Writer) Err(string) error
  3952  pkg log/syslog (freebsd-386), method (*Writer) Info(string) error
  3953  pkg log/syslog (freebsd-386), method (*Writer) Notice(string) error
  3954  pkg log/syslog (freebsd-386), method (*Writer) Warning(string) error
  3955  pkg log/syslog (freebsd-386), method (*Writer) Write([]uint8) (int, error)
  3956  pkg log/syslog (freebsd-386), type Priority int
  3957  pkg log/syslog (freebsd-386), type Writer struct
  3958  pkg log/syslog (freebsd-amd64), const LOG_ALERT Priority
  3959  pkg log/syslog (freebsd-amd64), const LOG_CRIT Priority
  3960  pkg log/syslog (freebsd-amd64), const LOG_DEBUG Priority
  3961  pkg log/syslog (freebsd-amd64), const LOG_EMERG Priority
  3962  pkg log/syslog (freebsd-amd64), const LOG_ERR Priority
  3963  pkg log/syslog (freebsd-amd64), const LOG_INFO Priority
  3964  pkg log/syslog (freebsd-amd64), const LOG_NOTICE Priority
  3965  pkg log/syslog (freebsd-amd64), const LOG_WARNING Priority
  3966  pkg log/syslog (freebsd-amd64), func Dial(string, string, Priority, string) (*Writer, error)
  3967  pkg log/syslog (freebsd-amd64), func New(Priority, string) (*Writer, error)
  3968  pkg log/syslog (freebsd-amd64), func NewLogger(Priority, int) (*log.Logger, error)
  3969  pkg log/syslog (freebsd-amd64), method (*Writer) Alert(string) error
  3970  pkg log/syslog (freebsd-amd64), method (*Writer) Close() error
  3971  pkg log/syslog (freebsd-amd64), method (*Writer) Crit(string) error
  3972  pkg log/syslog (freebsd-amd64), method (*Writer) Debug(string) error
  3973  pkg log/syslog (freebsd-amd64), method (*Writer) Emerg(string) error
  3974  pkg log/syslog (freebsd-amd64), method (*Writer) Err(string) error
  3975  pkg log/syslog (freebsd-amd64), method (*Writer) Info(string) error
  3976  pkg log/syslog (freebsd-amd64), method (*Writer) Notice(string) error
  3977  pkg log/syslog (freebsd-amd64), method (*Writer) Warning(string) error
  3978  pkg log/syslog (freebsd-amd64), method (*Writer) Write([]uint8) (int, error)
  3979  pkg log/syslog (freebsd-amd64), type Priority int
  3980  pkg log/syslog (freebsd-amd64), type Writer struct
  3981  pkg log/syslog (linux-386), const LOG_ALERT Priority
  3982  pkg log/syslog (linux-386), const LOG_CRIT Priority
  3983  pkg log/syslog (linux-386), const LOG_DEBUG Priority
  3984  pkg log/syslog (linux-386), const LOG_EMERG Priority
  3985  pkg log/syslog (linux-386), const LOG_ERR Priority
  3986  pkg log/syslog (linux-386), const LOG_INFO Priority
  3987  pkg log/syslog (linux-386), const LOG_NOTICE Priority
  3988  pkg log/syslog (linux-386), const LOG_WARNING Priority
  3989  pkg log/syslog (linux-386), func Dial(string, string, Priority, string) (*Writer, error)
  3990  pkg log/syslog (linux-386), func New(Priority, string) (*Writer, error)
  3991  pkg log/syslog (linux-386), func NewLogger(Priority, int) (*log.Logger, error)
  3992  pkg log/syslog (linux-386), method (*Writer) Alert(string) error
  3993  pkg log/syslog (linux-386), method (*Writer) Close() error
  3994  pkg log/syslog (linux-386), method (*Writer) Crit(string) error
  3995  pkg log/syslog (linux-386), method (*Writer) Debug(string) error
  3996  pkg log/syslog (linux-386), method (*Writer) Emerg(string) error
  3997  pkg log/syslog (linux-386), method (*Writer) Err(string) error
  3998  pkg log/syslog (linux-386), method (*Writer) Info(string) error
  3999  pkg log/syslog (linux-386), method (*Writer) Notice(string) error
  4000  pkg log/syslog (linux-386), method (*Writer) Warning(string) error
  4001  pkg log/syslog (linux-386), method (*Writer) Write([]uint8) (int, error)
  4002  pkg log/syslog (linux-386), type Priority int
  4003  pkg log/syslog (linux-386), type Writer struct
  4004  pkg log/syslog (linux-386-cgo), const LOG_ALERT Priority
  4005  pkg log/syslog (linux-386-cgo), const LOG_CRIT Priority
  4006  pkg log/syslog (linux-386-cgo), const LOG_DEBUG Priority
  4007  pkg log/syslog (linux-386-cgo), const LOG_EMERG Priority
  4008  pkg log/syslog (linux-386-cgo), const LOG_ERR Priority
  4009  pkg log/syslog (linux-386-cgo), const LOG_INFO Priority
  4010  pkg log/syslog (linux-386-cgo), const LOG_NOTICE Priority
  4011  pkg log/syslog (linux-386-cgo), const LOG_WARNING Priority
  4012  pkg log/syslog (linux-386-cgo), func Dial(string, string, Priority, string) (*Writer, error)
  4013  pkg log/syslog (linux-386-cgo), func New(Priority, string) (*Writer, error)
  4014  pkg log/syslog (linux-386-cgo), func NewLogger(Priority, int) (*log.Logger, error)
  4015  pkg log/syslog (linux-386-cgo), method (*Writer) Alert(string) error
  4016  pkg log/syslog (linux-386-cgo), method (*Writer) Close() error
  4017  pkg log/syslog (linux-386-cgo), method (*Writer) Crit(string) error
  4018  pkg log/syslog (linux-386-cgo), method (*Writer) Debug(string) error
  4019  pkg log/syslog (linux-386-cgo), method (*Writer) Emerg(string) error
  4020  pkg log/syslog (linux-386-cgo), method (*Writer) Err(string) error
  4021  pkg log/syslog (linux-386-cgo), method (*Writer) Info(string) error
  4022  pkg log/syslog (linux-386-cgo), method (*Writer) Notice(string) error
  4023  pkg log/syslog (linux-386-cgo), method (*Writer) Warning(string) error
  4024  pkg log/syslog (linux-386-cgo), method (*Writer) Write([]uint8) (int, error)
  4025  pkg log/syslog (linux-386-cgo), type Priority int
  4026  pkg log/syslog (linux-386-cgo), type Writer struct
  4027  pkg log/syslog (linux-amd64), const LOG_ALERT Priority
  4028  pkg log/syslog (linux-amd64), const LOG_CRIT Priority
  4029  pkg log/syslog (linux-amd64), const LOG_DEBUG Priority
  4030  pkg log/syslog (linux-amd64), const LOG_EMERG Priority
  4031  pkg log/syslog (linux-amd64), const LOG_ERR Priority
  4032  pkg log/syslog (linux-amd64), const LOG_INFO Priority
  4033  pkg log/syslog (linux-amd64), const LOG_NOTICE Priority
  4034  pkg log/syslog (linux-amd64), const LOG_WARNING Priority
  4035  pkg log/syslog (linux-amd64), func Dial(string, string, Priority, string) (*Writer, error)
  4036  pkg log/syslog (linux-amd64), func New(Priority, string) (*Writer, error)
  4037  pkg log/syslog (linux-amd64), func NewLogger(Priority, int) (*log.Logger, error)
  4038  pkg log/syslog (linux-amd64), method (*Writer) Alert(string) error
  4039  pkg log/syslog (linux-amd64), method (*Writer) Close() error
  4040  pkg log/syslog (linux-amd64), method (*Writer) Crit(string) error
  4041  pkg log/syslog (linux-amd64), method (*Writer) Debug(string) error
  4042  pkg log/syslog (linux-amd64), method (*Writer) Emerg(string) error
  4043  pkg log/syslog (linux-amd64), method (*Writer) Err(string) error
  4044  pkg log/syslog (linux-amd64), method (*Writer) Info(string) error
  4045  pkg log/syslog (linux-amd64), method (*Writer) Notice(string) error
  4046  pkg log/syslog (linux-amd64), method (*Writer) Warning(string) error
  4047  pkg log/syslog (linux-amd64), method (*Writer) Write([]uint8) (int, error)
  4048  pkg log/syslog (linux-amd64), type Priority int
  4049  pkg log/syslog (linux-amd64), type Writer struct
  4050  pkg log/syslog (linux-amd64-cgo), const LOG_ALERT Priority
  4051  pkg log/syslog (linux-amd64-cgo), const LOG_CRIT Priority
  4052  pkg log/syslog (linux-amd64-cgo), const LOG_DEBUG Priority
  4053  pkg log/syslog (linux-amd64-cgo), const LOG_EMERG Priority
  4054  pkg log/syslog (linux-amd64-cgo), const LOG_ERR Priority
  4055  pkg log/syslog (linux-amd64-cgo), const LOG_INFO Priority
  4056  pkg log/syslog (linux-amd64-cgo), const LOG_NOTICE Priority
  4057  pkg log/syslog (linux-amd64-cgo), const LOG_WARNING Priority
  4058  pkg log/syslog (linux-amd64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
  4059  pkg log/syslog (linux-amd64-cgo), func New(Priority, string) (*Writer, error)
  4060  pkg log/syslog (linux-amd64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
  4061  pkg log/syslog (linux-amd64-cgo), method (*Writer) Alert(string) error
  4062  pkg log/syslog (linux-amd64-cgo), method (*Writer) Close() error
  4063  pkg log/syslog (linux-amd64-cgo), method (*Writer) Crit(string) error
  4064  pkg log/syslog (linux-amd64-cgo), method (*Writer) Debug(string) error
  4065  pkg log/syslog (linux-amd64-cgo), method (*Writer) Emerg(string) error
  4066  pkg log/syslog (linux-amd64-cgo), method (*Writer) Err(string) error
  4067  pkg log/syslog (linux-amd64-cgo), method (*Writer) Info(string) error
  4068  pkg log/syslog (linux-amd64-cgo), method (*Writer) Notice(string) error
  4069  pkg log/syslog (linux-amd64-cgo), method (*Writer) Warning(string) error
  4070  pkg log/syslog (linux-amd64-cgo), method (*Writer) Write([]uint8) (int, error)
  4071  pkg log/syslog (linux-amd64-cgo), type Priority int
  4072  pkg log/syslog (linux-amd64-cgo), type Writer struct
  4073  pkg log/syslog (linux-arm), const LOG_ALERT Priority
  4074  pkg log/syslog (linux-arm), const LOG_CRIT Priority
  4075  pkg log/syslog (linux-arm), const LOG_DEBUG Priority
  4076  pkg log/syslog (linux-arm), const LOG_EMERG Priority
  4077  pkg log/syslog (linux-arm), const LOG_ERR Priority
  4078  pkg log/syslog (linux-arm), const LOG_INFO Priority
  4079  pkg log/syslog (linux-arm), const LOG_NOTICE Priority
  4080  pkg log/syslog (linux-arm), const LOG_WARNING Priority
  4081  pkg log/syslog (linux-arm), func Dial(string, string, Priority, string) (*Writer, error)
  4082  pkg log/syslog (linux-arm), func New(Priority, string) (*Writer, error)
  4083  pkg log/syslog (linux-arm), func NewLogger(Priority, int) (*log.Logger, error)
  4084  pkg log/syslog (linux-arm), method (*Writer) Alert(string) error
  4085  pkg log/syslog (linux-arm), method (*Writer) Close() error
  4086  pkg log/syslog (linux-arm), method (*Writer) Crit(string) error
  4087  pkg log/syslog (linux-arm), method (*Writer) Debug(string) error
  4088  pkg log/syslog (linux-arm), method (*Writer) Emerg(string) error
  4089  pkg log/syslog (linux-arm), method (*Writer) Err(string) error
  4090  pkg log/syslog (linux-arm), method (*Writer) Info(string) error
  4091  pkg log/syslog (linux-arm), method (*Writer) Notice(string) error
  4092  pkg log/syslog (linux-arm), method (*Writer) Warning(string) error
  4093  pkg log/syslog (linux-arm), method (*Writer) Write([]uint8) (int, error)
  4094  pkg log/syslog (linux-arm), type Priority int
  4095  pkg log/syslog (linux-arm), type Writer struct
  4096  pkg math, const E ideal-float
  4097  pkg math, const Ln10 ideal-float
  4098  pkg math, const Ln2 ideal-float
  4099  pkg math, const Log10E ideal-float
  4100  pkg math, const Log2E ideal-float
  4101  pkg math, const MaxFloat32 ideal-float
  4102  pkg math, const MaxFloat64 ideal-float
  4103  pkg math, const MaxInt16 ideal-int
  4104  pkg math, const MaxInt32 ideal-int
  4105  pkg math, const MaxInt64 ideal-int
  4106  pkg math, const MaxInt8 ideal-int
  4107  pkg math, const MaxUint16 ideal-int
  4108  pkg math, const MaxUint32 ideal-int
  4109  pkg math, const MaxUint64 ideal-int
  4110  pkg math, const MaxUint8 ideal-int
  4111  pkg math, const MinInt16 ideal-int
  4112  pkg math, const MinInt32 ideal-int
  4113  pkg math, const MinInt64 ideal-int
  4114  pkg math, const MinInt8 ideal-int
  4115  pkg math, const Phi ideal-float
  4116  pkg math, const Pi ideal-float
  4117  pkg math, const SmallestNonzeroFloat32 ideal-float
  4118  pkg math, const SmallestNonzeroFloat64 ideal-float
  4119  pkg math, const Sqrt2 ideal-float
  4120  pkg math, const SqrtE ideal-float
  4121  pkg math, const SqrtPhi ideal-float
  4122  pkg math, const SqrtPi ideal-float
  4123  pkg math, func Abs(float64) float64
  4124  pkg math, func Acos(float64) float64
  4125  pkg math, func Acosh(float64) float64
  4126  pkg math, func Asin(float64) float64
  4127  pkg math, func Asinh(float64) float64
  4128  pkg math, func Atan(float64) float64
  4129  pkg math, func Atan2(float64, float64) float64
  4130  pkg math, func Atanh(float64) float64
  4131  pkg math, func Cbrt(float64) float64
  4132  pkg math, func Ceil(float64) float64
  4133  pkg math, func Copysign(float64, float64) float64
  4134  pkg math, func Cos(float64) float64
  4135  pkg math, func Cosh(float64) float64
  4136  pkg math, func Dim(float64, float64) float64
  4137  pkg math, func Erf(float64) float64
  4138  pkg math, func Erfc(float64) float64
  4139  pkg math, func Exp(float64) float64
  4140  pkg math, func Exp2(float64) float64
  4141  pkg math, func Expm1(float64) float64
  4142  pkg math, func Float32bits(float32) uint32
  4143  pkg math, func Float32frombits(uint32) float32
  4144  pkg math, func Float64bits(float64) uint64
  4145  pkg math, func Float64frombits(uint64) float64
  4146  pkg math, func Floor(float64) float64
  4147  pkg math, func Frexp(float64) (float64, int)
  4148  pkg math, func Gamma(float64) float64
  4149  pkg math, func Hypot(float64, float64) float64
  4150  pkg math, func Ilogb(float64) int
  4151  pkg math, func Inf(int) float64
  4152  pkg math, func IsInf(float64, int) bool
  4153  pkg math, func IsNaN(float64) bool
  4154  pkg math, func J0(float64) float64
  4155  pkg math, func J1(float64) float64
  4156  pkg math, func Jn(int, float64) float64
  4157  pkg math, func Ldexp(float64, int) float64
  4158  pkg math, func Lgamma(float64) (float64, int)
  4159  pkg math, func Log(float64) float64
  4160  pkg math, func Log10(float64) float64
  4161  pkg math, func Log1p(float64) float64
  4162  pkg math, func Log2(float64) float64
  4163  pkg math, func Logb(float64) float64
  4164  pkg math, func Max(float64, float64) float64
  4165  pkg math, func Min(float64, float64) float64
  4166  pkg math, func Mod(float64, float64) float64
  4167  pkg math, func Modf(float64) (float64, float64)
  4168  pkg math, func NaN() float64
  4169  pkg math, func Nextafter(float64, float64) float64
  4170  pkg math, func Pow(float64, float64) float64
  4171  pkg math, func Pow10(int) float64
  4172  pkg math, func Remainder(float64, float64) float64
  4173  pkg math, func Signbit(float64) bool
  4174  pkg math, func Sin(float64) float64
  4175  pkg math, func Sincos(float64) (float64, float64)
  4176  pkg math, func Sinh(float64) float64
  4177  pkg math, func Sqrt(float64) float64
  4178  pkg math, func Tan(float64) float64
  4179  pkg math, func Tanh(float64) float64
  4180  pkg math, func Trunc(float64) float64
  4181  pkg math, func Y0(float64) float64
  4182  pkg math, func Y1(float64) float64
  4183  pkg math, func Yn(int, float64) float64
  4184  pkg math/big, const MaxBase ideal-char
  4185  pkg math/big, func NewInt(int64) *Int
  4186  pkg math/big, func NewRat(int64, int64) *Rat
  4187  pkg math/big, method (*Int) Abs(*Int) *Int
  4188  pkg math/big, method (*Int) Add(*Int, *Int) *Int
  4189  pkg math/big, method (*Int) And(*Int, *Int) *Int
  4190  pkg math/big, method (*Int) AndNot(*Int, *Int) *Int
  4191  pkg math/big, method (*Int) Binomial(int64, int64) *Int
  4192  pkg math/big, method (*Int) Bit(int) uint
  4193  pkg math/big, method (*Int) BitLen() int
  4194  pkg math/big, method (*Int) Bits() []Word
  4195  pkg math/big, method (*Int) Bytes() []uint8
  4196  pkg math/big, method (*Int) Cmp(*Int) int
  4197  pkg math/big, method (*Int) Div(*Int, *Int) *Int
  4198  pkg math/big, method (*Int) DivMod(*Int, *Int, *Int) (*Int, *Int)
  4199  pkg math/big, method (*Int) Exp(*Int, *Int, *Int) *Int
  4200  pkg math/big, method (*Int) Format(fmt.State, int32)
  4201  pkg math/big, method (*Int) GCD(*Int, *Int, *Int, *Int) *Int
  4202  pkg math/big, method (*Int) GobDecode([]uint8) error
  4203  pkg math/big, method (*Int) GobEncode() ([]uint8, error)
  4204  pkg math/big, method (*Int) Int64() int64
  4205  pkg math/big, method (*Int) Lsh(*Int, uint) *Int
  4206  pkg math/big, method (*Int) Mod(*Int, *Int) *Int
  4207  pkg math/big, method (*Int) ModInverse(*Int, *Int) *Int
  4208  pkg math/big, method (*Int) Mul(*Int, *Int) *Int
  4209  pkg math/big, method (*Int) MulRange(int64, int64) *Int
  4210  pkg math/big, method (*Int) Neg(*Int) *Int
  4211  pkg math/big, method (*Int) Not(*Int) *Int
  4212  pkg math/big, method (*Int) Or(*Int, *Int) *Int
  4213  pkg math/big, method (*Int) ProbablyPrime(int) bool
  4214  pkg math/big, method (*Int) Quo(*Int, *Int) *Int
  4215  pkg math/big, method (*Int) QuoRem(*Int, *Int, *Int) (*Int, *Int)
  4216  pkg math/big, method (*Int) Rand(*rand.Rand, *Int) *Int
  4217  pkg math/big, method (*Int) Rem(*Int, *Int) *Int
  4218  pkg math/big, method (*Int) Rsh(*Int, uint) *Int
  4219  pkg math/big, method (*Int) Scan(fmt.ScanState, int32) error
  4220  pkg math/big, method (*Int) Set(*Int) *Int
  4221  pkg math/big, method (*Int) SetBit(*Int, int, uint) *Int
  4222  pkg math/big, method (*Int) SetBits([]Word) *Int
  4223  pkg math/big, method (*Int) SetBytes([]uint8) *Int
  4224  pkg math/big, method (*Int) SetInt64(int64) *Int
  4225  pkg math/big, method (*Int) SetString(string, int) (*Int, bool)
  4226  pkg math/big, method (*Int) Sign() int
  4227  pkg math/big, method (*Int) String() string
  4228  pkg math/big, method (*Int) Sub(*Int, *Int) *Int
  4229  pkg math/big, method (*Int) Xor(*Int, *Int) *Int
  4230  pkg math/big, method (*Rat) Abs(*Rat) *Rat
  4231  pkg math/big, method (*Rat) Add(*Rat, *Rat) *Rat
  4232  pkg math/big, method (*Rat) Cmp(*Rat) int
  4233  pkg math/big, method (*Rat) Denom() *Int
  4234  pkg math/big, method (*Rat) FloatString(int) string
  4235  pkg math/big, method (*Rat) GobDecode([]uint8) error
  4236  pkg math/big, method (*Rat) GobEncode() ([]uint8, error)
  4237  pkg math/big, method (*Rat) Inv(*Rat) *Rat
  4238  pkg math/big, method (*Rat) IsInt() bool
  4239  pkg math/big, method (*Rat) Mul(*Rat, *Rat) *Rat
  4240  pkg math/big, method (*Rat) Neg(*Rat) *Rat
  4241  pkg math/big, method (*Rat) Num() *Int
  4242  pkg math/big, method (*Rat) Quo(*Rat, *Rat) *Rat
  4243  pkg math/big, method (*Rat) RatString() string
  4244  pkg math/big, method (*Rat) Scan(fmt.ScanState, int32) error
  4245  pkg math/big, method (*Rat) Set(*Rat) *Rat
  4246  pkg math/big, method (*Rat) SetFrac(*Int, *Int) *Rat
  4247  pkg math/big, method (*Rat) SetFrac64(int64, int64) *Rat
  4248  pkg math/big, method (*Rat) SetInt(*Int) *Rat
  4249  pkg math/big, method (*Rat) SetInt64(int64) *Rat
  4250  pkg math/big, method (*Rat) SetString(string) (*Rat, bool)
  4251  pkg math/big, method (*Rat) Sign() int
  4252  pkg math/big, method (*Rat) String() string
  4253  pkg math/big, method (*Rat) Sub(*Rat, *Rat) *Rat
  4254  pkg math/big, type Int struct
  4255  pkg math/big, type Rat struct
  4256  pkg math/big, type Word uintptr
  4257  pkg math/cmplx, func Abs(complex128) float64
  4258  pkg math/cmplx, func Acos(complex128) complex128
  4259  pkg math/cmplx, func Acosh(complex128) complex128
  4260  pkg math/cmplx, func Asin(complex128) complex128
  4261  pkg math/cmplx, func Asinh(complex128) complex128
  4262  pkg math/cmplx, func Atan(complex128) complex128
  4263  pkg math/cmplx, func Atanh(complex128) complex128
  4264  pkg math/cmplx, func Conj(complex128) complex128
  4265  pkg math/cmplx, func Cos(complex128) complex128
  4266  pkg math/cmplx, func Cosh(complex128) complex128
  4267  pkg math/cmplx, func Cot(complex128) complex128
  4268  pkg math/cmplx, func Exp(complex128) complex128
  4269  pkg math/cmplx, func Inf() complex128
  4270  pkg math/cmplx, func IsInf(complex128) bool
  4271  pkg math/cmplx, func IsNaN(complex128) bool
  4272  pkg math/cmplx, func Log(complex128) complex128
  4273  pkg math/cmplx, func Log10(complex128) complex128
  4274  pkg math/cmplx, func NaN() complex128
  4275  pkg math/cmplx, func Phase(complex128) float64
  4276  pkg math/cmplx, func Polar(complex128) (float64, float64)
  4277  pkg math/cmplx, func Pow(complex128, complex128) complex128
  4278  pkg math/cmplx, func Rect(float64, float64) complex128
  4279  pkg math/cmplx, func Sin(complex128) complex128
  4280  pkg math/cmplx, func Sinh(complex128) complex128
  4281  pkg math/cmplx, func Sqrt(complex128) complex128
  4282  pkg math/cmplx, func Tan(complex128) complex128
  4283  pkg math/cmplx, func Tanh(complex128) complex128
  4284  pkg math/rand, func ExpFloat64() float64
  4285  pkg math/rand, func Float32() float32
  4286  pkg math/rand, func Float64() float64
  4287  pkg math/rand, func Int() int
  4288  pkg math/rand, func Int31() int32
  4289  pkg math/rand, func Int31n(int32) int32
  4290  pkg math/rand, func Int63() int64
  4291  pkg math/rand, func Int63n(int64) int64
  4292  pkg math/rand, func Intn(int) int
  4293  pkg math/rand, func New(Source) *Rand
  4294  pkg math/rand, func NewSource(int64) Source
  4295  pkg math/rand, func NewZipf(*Rand, float64, float64, uint64) *Zipf
  4296  pkg math/rand, func NormFloat64() float64
  4297  pkg math/rand, func Perm(int) []int
  4298  pkg math/rand, func Seed(int64)
  4299  pkg math/rand, func Uint32() uint32
  4300  pkg math/rand, method (*Rand) ExpFloat64() float64
  4301  pkg math/rand, method (*Rand) Float32() float32
  4302  pkg math/rand, method (*Rand) Float64() float64
  4303  pkg math/rand, method (*Rand) Int() int
  4304  pkg math/rand, method (*Rand) Int31() int32
  4305  pkg math/rand, method (*Rand) Int31n(int32) int32
  4306  pkg math/rand, method (*Rand) Int63() int64
  4307  pkg math/rand, method (*Rand) Int63n(int64) int64
  4308  pkg math/rand, method (*Rand) Intn(int) int
  4309  pkg math/rand, method (*Rand) NormFloat64() float64
  4310  pkg math/rand, method (*Rand) Perm(int) []int
  4311  pkg math/rand, method (*Rand) Seed(int64)
  4312  pkg math/rand, method (*Rand) Uint32() uint32
  4313  pkg math/rand, method (*Zipf) Uint64() uint64
  4314  pkg math/rand, type Rand struct
  4315  pkg math/rand, type Source interface { Int63, Seed }
  4316  pkg math/rand, type Source interface, Int63() int64
  4317  pkg math/rand, type Source interface, Seed(int64)
  4318  pkg math/rand, type Zipf struct
  4319  pkg mime, func AddExtensionType(string, string) error
  4320  pkg mime, func FormatMediaType(string, map[string]string) string
  4321  pkg mime, func ParseMediaType(string) (string, map[string]string, error)
  4322  pkg mime, func TypeByExtension(string) string
  4323  pkg mime/multipart, func NewReader(io.Reader, string) *Reader
  4324  pkg mime/multipart, func NewWriter(io.Writer) *Writer
  4325  pkg mime/multipart, method (*FileHeader) Open() (File, error)
  4326  pkg mime/multipart, method (*Form) RemoveAll() error
  4327  pkg mime/multipart, method (*Part) Close() error
  4328  pkg mime/multipart, method (*Part) FileName() string
  4329  pkg mime/multipart, method (*Part) FormName() string
  4330  pkg mime/multipart, method (*Part) Read([]uint8) (int, error)
  4331  pkg mime/multipart, method (*Reader) NextPart() (*Part, error)
  4332  pkg mime/multipart, method (*Reader) ReadForm(int64) (*Form, error)
  4333  pkg mime/multipart, method (*Writer) Boundary() string
  4334  pkg mime/multipart, method (*Writer) Close() error
  4335  pkg mime/multipart, method (*Writer) CreateFormField(string) (io.Writer, error)
  4336  pkg mime/multipart, method (*Writer) CreateFormFile(string, string) (io.Writer, error)
  4337  pkg mime/multipart, method (*Writer) CreatePart(textproto.MIMEHeader) (io.Writer, error)
  4338  pkg mime/multipart, method (*Writer) FormDataContentType() string
  4339  pkg mime/multipart, method (*Writer) WriteField(string, string) error
  4340  pkg mime/multipart, type File interface { Close, Read, ReadAt, Seek }
  4341  pkg mime/multipart, type File interface, Close() error
  4342  pkg mime/multipart, type File interface, Read([]uint8) (int, error)
  4343  pkg mime/multipart, type File interface, ReadAt([]uint8, int64) (int, error)
  4344  pkg mime/multipart, type File interface, Seek(int64, int) (int64, error)
  4345  pkg mime/multipart, type FileHeader struct
  4346  pkg mime/multipart, type FileHeader struct, Filename string
  4347  pkg mime/multipart, type FileHeader struct, Header textproto.MIMEHeader
  4348  pkg mime/multipart, type Form struct
  4349  pkg mime/multipart, type Form struct, File map[string][]*FileHeader
  4350  pkg mime/multipart, type Form struct, Value map[string][]string
  4351  pkg mime/multipart, type Part struct
  4352  pkg mime/multipart, type Part struct, Header textproto.MIMEHeader
  4353  pkg mime/multipart, type Reader struct
  4354  pkg mime/multipart, type Writer struct
  4355  pkg net, const FlagBroadcast Flags
  4356  pkg net, const FlagLoopback Flags
  4357  pkg net, const FlagMulticast Flags
  4358  pkg net, const FlagPointToPoint Flags
  4359  pkg net, const FlagUp Flags
  4360  pkg net, const IPv4len ideal-int
  4361  pkg net, const IPv6len ideal-int
  4362  pkg net, func CIDRMask(int, int) IPMask
  4363  pkg net, func Dial(string, string) (Conn, error)
  4364  pkg net, func DialIP(string, *IPAddr, *IPAddr) (*IPConn, error)
  4365  pkg net, func DialTCP(string, *TCPAddr, *TCPAddr) (*TCPConn, error)
  4366  pkg net, func DialTimeout(string, string, time.Duration) (Conn, error)
  4367  pkg net, func DialUDP(string, *UDPAddr, *UDPAddr) (*UDPConn, error)
  4368  pkg net, func DialUnix(string, *UnixAddr, *UnixAddr) (*UnixConn, error)
  4369  pkg net, func FileConn(*os.File) (Conn, error)
  4370  pkg net, func FileListener(*os.File) (Listener, error)
  4371  pkg net, func FilePacketConn(*os.File) (PacketConn, error)
  4372  pkg net, func IPv4(uint8, uint8, uint8, uint8) IP
  4373  pkg net, func IPv4Mask(uint8, uint8, uint8, uint8) IPMask
  4374  pkg net, func InterfaceAddrs() ([]Addr, error)
  4375  pkg net, func InterfaceByIndex(int) (*Interface, error)
  4376  pkg net, func InterfaceByName(string) (*Interface, error)
  4377  pkg net, func Interfaces() ([]Interface, error)
  4378  pkg net, func JoinHostPort(string, string) string
  4379  pkg net, func Listen(string, string) (Listener, error)
  4380  pkg net, func ListenIP(string, *IPAddr) (*IPConn, error)
  4381  pkg net, func ListenMulticastUDP(string, *Interface, *UDPAddr) (*UDPConn, error)
  4382  pkg net, func ListenPacket(string, string) (PacketConn, error)
  4383  pkg net, func ListenTCP(string, *TCPAddr) (*TCPListener, error)
  4384  pkg net, func ListenUDP(string, *UDPAddr) (*UDPConn, error)
  4385  pkg net, func ListenUnix(string, *UnixAddr) (*UnixListener, error)
  4386  pkg net, func ListenUnixgram(string, *UnixAddr) (*UDPConn, error)
  4387  pkg net, func LookupAddr(string) ([]string, error)
  4388  pkg net, func LookupCNAME(string) (string, error)
  4389  pkg net, func LookupHost(string) ([]string, error)
  4390  pkg net, func LookupIP(string) ([]IP, error)
  4391  pkg net, func LookupMX(string) ([]*MX, error)
  4392  pkg net, func LookupPort(string, string) (int, error)
  4393  pkg net, func LookupSRV(string, string, string) (string, []*SRV, error)
  4394  pkg net, func LookupTXT(string) ([]string, error)
  4395  pkg net, func ParseCIDR(string) (IP, *IPNet, error)
  4396  pkg net, func ParseIP(string) IP
  4397  pkg net, func ParseMAC(string) (HardwareAddr, error)
  4398  pkg net, func Pipe() (Conn, Conn)
  4399  pkg net, func ResolveIPAddr(string, string) (*IPAddr, error)
  4400  pkg net, func ResolveTCPAddr(string, string) (*TCPAddr, error)
  4401  pkg net, func ResolveUDPAddr(string, string) (*UDPAddr, error)
  4402  pkg net, func ResolveUnixAddr(string, string) (*UnixAddr, error)
  4403  pkg net, func SplitHostPort(string) (string, string, error)
  4404  pkg net, method (*AddrError) Error() string
  4405  pkg net, method (*AddrError) Temporary() bool
  4406  pkg net, method (*AddrError) Timeout() bool
  4407  pkg net, method (*DNSConfigError) Error() string
  4408  pkg net, method (*DNSConfigError) Temporary() bool
  4409  pkg net, method (*DNSConfigError) Timeout() bool
  4410  pkg net, method (*DNSError) Error() string
  4411  pkg net, method (*DNSError) Temporary() bool
  4412  pkg net, method (*DNSError) Timeout() bool
  4413  pkg net, method (*IPAddr) Network() string
  4414  pkg net, method (*IPAddr) String() string
  4415  pkg net, method (*IPConn) Close() error
  4416  pkg net, method (*IPConn) File() (*os.File, error)
  4417  pkg net, method (*IPConn) LocalAddr() Addr
  4418  pkg net, method (*IPConn) Read([]uint8) (int, error)
  4419  pkg net, method (*IPConn) ReadFrom([]uint8) (int, Addr, error)
  4420  pkg net, method (*IPConn) ReadFromIP([]uint8) (int, *IPAddr, error)
  4421  pkg net, method (*IPConn) RemoteAddr() Addr
  4422  pkg net, method (*IPConn) SetDeadline(time.Time) error
  4423  pkg net, method (*IPConn) SetReadBuffer(int) error
  4424  pkg net, method (*IPConn) SetReadDeadline(time.Time) error
  4425  pkg net, method (*IPConn) SetWriteBuffer(int) error
  4426  pkg net, method (*IPConn) SetWriteDeadline(time.Time) error
  4427  pkg net, method (*IPConn) Write([]uint8) (int, error)
  4428  pkg net, method (*IPConn) WriteTo([]uint8, Addr) (int, error)
  4429  pkg net, method (*IPConn) WriteToIP([]uint8, *IPAddr) (int, error)
  4430  pkg net, method (*IPNet) Contains(IP) bool
  4431  pkg net, method (*IPNet) Network() string
  4432  pkg net, method (*IPNet) String() string
  4433  pkg net, method (*Interface) Addrs() ([]Addr, error)
  4434  pkg net, method (*Interface) MulticastAddrs() ([]Addr, error)
  4435  pkg net, method (*OpError) Error() string
  4436  pkg net, method (*OpError) Temporary() bool
  4437  pkg net, method (*OpError) Timeout() bool
  4438  pkg net, method (*ParseError) Error() string
  4439  pkg net, method (*TCPAddr) Network() string
  4440  pkg net, method (*TCPAddr) String() string
  4441  pkg net, method (*TCPConn) Close() error
  4442  pkg net, method (*TCPConn) CloseRead() error
  4443  pkg net, method (*TCPConn) CloseWrite() error
  4444  pkg net, method (*TCPConn) File() (*os.File, error)
  4445  pkg net, method (*TCPConn) LocalAddr() Addr
  4446  pkg net, method (*TCPConn) Read([]uint8) (int, error)
  4447  pkg net, method (*TCPConn) ReadFrom(io.Reader) (int64, error)
  4448  pkg net, method (*TCPConn) RemoteAddr() Addr
  4449  pkg net, method (*TCPConn) SetDeadline(time.Time) error
  4450  pkg net, method (*TCPConn) SetKeepAlive(bool) error
  4451  pkg net, method (*TCPConn) SetLinger(int) error
  4452  pkg net, method (*TCPConn) SetNoDelay(bool) error
  4453  pkg net, method (*TCPConn) SetReadBuffer(int) error
  4454  pkg net, method (*TCPConn) SetReadDeadline(time.Time) error
  4455  pkg net, method (*TCPConn) SetWriteBuffer(int) error
  4456  pkg net, method (*TCPConn) SetWriteDeadline(time.Time) error
  4457  pkg net, method (*TCPConn) Write([]uint8) (int, error)
  4458  pkg net, method (*TCPListener) Accept() (Conn, error)
  4459  pkg net, method (*TCPListener) AcceptTCP() (*TCPConn, error)
  4460  pkg net, method (*TCPListener) Addr() Addr
  4461  pkg net, method (*TCPListener) Close() error
  4462  pkg net, method (*TCPListener) File() (*os.File, error)
  4463  pkg net, method (*TCPListener) SetDeadline(time.Time) error
  4464  pkg net, method (*UDPAddr) Network() string
  4465  pkg net, method (*UDPAddr) String() string
  4466  pkg net, method (*UDPConn) Close() error
  4467  pkg net, method (*UDPConn) File() (*os.File, error)
  4468  pkg net, method (*UDPConn) LocalAddr() Addr
  4469  pkg net, method (*UDPConn) Read([]uint8) (int, error)
  4470  pkg net, method (*UDPConn) ReadFrom([]uint8) (int, Addr, error)
  4471  pkg net, method (*UDPConn) ReadFromUDP([]uint8) (int, *UDPAddr, error)
  4472  pkg net, method (*UDPConn) RemoteAddr() Addr
  4473  pkg net, method (*UDPConn) SetDeadline(time.Time) error
  4474  pkg net, method (*UDPConn) SetReadBuffer(int) error
  4475  pkg net, method (*UDPConn) SetReadDeadline(time.Time) error
  4476  pkg net, method (*UDPConn) SetWriteBuffer(int) error
  4477  pkg net, method (*UDPConn) SetWriteDeadline(time.Time) error
  4478  pkg net, method (*UDPConn) Write([]uint8) (int, error)
  4479  pkg net, method (*UDPConn) WriteTo([]uint8, Addr) (int, error)
  4480  pkg net, method (*UDPConn) WriteToUDP([]uint8, *UDPAddr) (int, error)
  4481  pkg net, method (*UnixAddr) Network() string
  4482  pkg net, method (*UnixAddr) String() string
  4483  pkg net, method (*UnixConn) Close() error
  4484  pkg net, method (*UnixConn) File() (*os.File, error)
  4485  pkg net, method (*UnixConn) LocalAddr() Addr
  4486  pkg net, method (*UnixConn) Read([]uint8) (int, error)
  4487  pkg net, method (*UnixConn) ReadFrom([]uint8) (int, Addr, error)
  4488  pkg net, method (*UnixConn) ReadFromUnix([]uint8) (int, *UnixAddr, error)
  4489  pkg net, method (*UnixConn) ReadMsgUnix([]uint8, []uint8) (int, int, int, *UnixAddr, error)
  4490  pkg net, method (*UnixConn) RemoteAddr() Addr
  4491  pkg net, method (*UnixConn) SetDeadline(time.Time) error
  4492  pkg net, method (*UnixConn) SetReadBuffer(int) error
  4493  pkg net, method (*UnixConn) SetReadDeadline(time.Time) error
  4494  pkg net, method (*UnixConn) SetWriteBuffer(int) error
  4495  pkg net, method (*UnixConn) SetWriteDeadline(time.Time) error
  4496  pkg net, method (*UnixConn) Write([]uint8) (int, error)
  4497  pkg net, method (*UnixConn) WriteMsgUnix([]uint8, []uint8, *UnixAddr) (int, int, error)
  4498  pkg net, method (*UnixConn) WriteTo([]uint8, Addr) (int, error)
  4499  pkg net, method (*UnixConn) WriteToUnix([]uint8, *UnixAddr) (int, error)
  4500  pkg net, method (*UnixListener) Accept() (Conn, error)
  4501  pkg net, method (*UnixListener) AcceptUnix() (*UnixConn, error)
  4502  pkg net, method (*UnixListener) Addr() Addr
  4503  pkg net, method (*UnixListener) Close() error
  4504  pkg net, method (*UnixListener) File() (*os.File, error)
  4505  pkg net, method (*UnixListener) SetDeadline(time.Time) error
  4506  pkg net, method (Flags) String() string
  4507  pkg net, method (HardwareAddr) String() string
  4508  pkg net, method (IP) DefaultMask() IPMask
  4509  pkg net, method (IP) Equal(IP) bool
  4510  pkg net, method (IP) IsGlobalUnicast() bool
  4511  pkg net, method (IP) IsInterfaceLocalMulticast() bool
  4512  pkg net, method (IP) IsLinkLocalMulticast() bool
  4513  pkg net, method (IP) IsLinkLocalUnicast() bool
  4514  pkg net, method (IP) IsLoopback() bool
  4515  pkg net, method (IP) IsMulticast() bool
  4516  pkg net, method (IP) IsUnspecified() bool
  4517  pkg net, method (IP) Mask(IPMask) IP
  4518  pkg net, method (IP) String() string
  4519  pkg net, method (IP) To16() IP
  4520  pkg net, method (IP) To4() IP
  4521  pkg net, method (IPMask) Size() (int, int)
  4522  pkg net, method (IPMask) String() string
  4523  pkg net, method (InvalidAddrError) Error() string
  4524  pkg net, method (InvalidAddrError) Temporary() bool
  4525  pkg net, method (InvalidAddrError) Timeout() bool
  4526  pkg net, method (UnknownNetworkError) Error() string
  4527  pkg net, method (UnknownNetworkError) Temporary() bool
  4528  pkg net, method (UnknownNetworkError) Timeout() bool
  4529  pkg net, type Addr interface { Network, String }
  4530  pkg net, type Addr interface, Network() string
  4531  pkg net, type Addr interface, String() string
  4532  pkg net, type AddrError struct
  4533  pkg net, type AddrError struct, Addr string
  4534  pkg net, type AddrError struct, Err string
  4535  pkg net, type Conn interface { Close, LocalAddr, Read, RemoteAddr, SetDeadline, SetReadDeadline, SetWriteDeadline, Write }
  4536  pkg net, type Conn interface, Close() error
  4537  pkg net, type Conn interface, LocalAddr() Addr
  4538  pkg net, type Conn interface, Read([]uint8) (int, error)
  4539  pkg net, type Conn interface, RemoteAddr() Addr
  4540  pkg net, type Conn interface, SetDeadline(time.Time) error
  4541  pkg net, type Conn interface, SetReadDeadline(time.Time) error
  4542  pkg net, type Conn interface, SetWriteDeadline(time.Time) error
  4543  pkg net, type Conn interface, Write([]uint8) (int, error)
  4544  pkg net, type DNSConfigError struct
  4545  pkg net, type DNSConfigError struct, Err error
  4546  pkg net, type DNSError struct
  4547  pkg net, type DNSError struct, Err string
  4548  pkg net, type DNSError struct, IsTimeout bool
  4549  pkg net, type DNSError struct, Name string
  4550  pkg net, type DNSError struct, Server string
  4551  pkg net, type Error interface { Error, Temporary, Timeout }
  4552  pkg net, type Error interface, Error() string
  4553  pkg net, type Error interface, Temporary() bool
  4554  pkg net, type Error interface, Timeout() bool
  4555  pkg net, type Flags uint
  4556  pkg net, type HardwareAddr []uint8
  4557  pkg net, type IP []uint8
  4558  pkg net, type IPAddr struct
  4559  pkg net, type IPAddr struct, IP IP
  4560  pkg net, type IPConn struct
  4561  pkg net, type IPMask []uint8
  4562  pkg net, type IPNet struct
  4563  pkg net, type IPNet struct, IP IP
  4564  pkg net, type IPNet struct, Mask IPMask
  4565  pkg net, type Interface struct
  4566  pkg net, type Interface struct, Flags Flags
  4567  pkg net, type Interface struct, HardwareAddr HardwareAddr
  4568  pkg net, type Interface struct, Index int
  4569  pkg net, type Interface struct, MTU int
  4570  pkg net, type Interface struct, Name string
  4571  pkg net, type InvalidAddrError string
  4572  pkg net, type Listener interface { Accept, Addr, Close }
  4573  pkg net, type Listener interface, Accept() (Conn, error)
  4574  pkg net, type Listener interface, Addr() Addr
  4575  pkg net, type Listener interface, Close() error
  4576  pkg net, type MX struct
  4577  pkg net, type MX struct, Host string
  4578  pkg net, type MX struct, Pref uint16
  4579  pkg net, type OpError struct
  4580  pkg net, type OpError struct, Addr Addr
  4581  pkg net, type OpError struct, Err error
  4582  pkg net, type OpError struct, Net string
  4583  pkg net, type OpError struct, Op string
  4584  pkg net, type PacketConn interface { Close, LocalAddr, ReadFrom, SetDeadline, SetReadDeadline, SetWriteDeadline, WriteTo }
  4585  pkg net, type PacketConn interface, Close() error
  4586  pkg net, type PacketConn interface, LocalAddr() Addr
  4587  pkg net, type PacketConn interface, ReadFrom([]uint8) (int, Addr, error)
  4588  pkg net, type PacketConn interface, SetDeadline(time.Time) error
  4589  pkg net, type PacketConn interface, SetReadDeadline(time.Time) error
  4590  pkg net, type PacketConn interface, SetWriteDeadline(time.Time) error
  4591  pkg net, type PacketConn interface, WriteTo([]uint8, Addr) (int, error)
  4592  pkg net, type ParseError struct
  4593  pkg net, type ParseError struct, Text string
  4594  pkg net, type ParseError struct, Type string
  4595  pkg net, type SRV struct
  4596  pkg net, type SRV struct, Port uint16
  4597  pkg net, type SRV struct, Priority uint16
  4598  pkg net, type SRV struct, Target string
  4599  pkg net, type SRV struct, Weight uint16
  4600  pkg net, type TCPAddr struct
  4601  pkg net, type TCPAddr struct, IP IP
  4602  pkg net, type TCPAddr struct, Port int
  4603  pkg net, type TCPConn struct
  4604  pkg net, type TCPListener struct
  4605  pkg net, type UDPAddr struct
  4606  pkg net, type UDPAddr struct, IP IP
  4607  pkg net, type UDPAddr struct, Port int
  4608  pkg net, type UDPConn struct
  4609  pkg net, type UnixAddr struct
  4610  pkg net, type UnixAddr struct, Name string
  4611  pkg net, type UnixAddr struct, Net string
  4612  pkg net, type UnixConn struct
  4613  pkg net, type UnixListener struct
  4614  pkg net, type UnknownNetworkError string
  4615  pkg net, var ErrWriteToConnected error
  4616  pkg net, var IPv4allrouter IP
  4617  pkg net, var IPv4allsys IP
  4618  pkg net, var IPv4bcast IP
  4619  pkg net, var IPv4zero IP
  4620  pkg net, var IPv6interfacelocalallnodes IP
  4621  pkg net, var IPv6linklocalallnodes IP
  4622  pkg net, var IPv6linklocalallrouters IP
  4623  pkg net, var IPv6loopback IP
  4624  pkg net, var IPv6unspecified IP
  4625  pkg net, var IPv6zero IP
  4626  pkg net/http, const DefaultMaxHeaderBytes ideal-int
  4627  pkg net/http, const DefaultMaxIdleConnsPerHost ideal-int
  4628  pkg net/http, const StatusAccepted ideal-int
  4629  pkg net/http, const StatusBadGateway ideal-int
  4630  pkg net/http, const StatusBadRequest ideal-int
  4631  pkg net/http, const StatusConflict ideal-int
  4632  pkg net/http, const StatusContinue ideal-int
  4633  pkg net/http, const StatusCreated ideal-int
  4634  pkg net/http, const StatusExpectationFailed ideal-int
  4635  pkg net/http, const StatusForbidden ideal-int
  4636  pkg net/http, const StatusFound ideal-int
  4637  pkg net/http, const StatusGatewayTimeout ideal-int
  4638  pkg net/http, const StatusGone ideal-int
  4639  pkg net/http, const StatusHTTPVersionNotSupported ideal-int
  4640  pkg net/http, const StatusInternalServerError ideal-int
  4641  pkg net/http, const StatusLengthRequired ideal-int
  4642  pkg net/http, const StatusMethodNotAllowed ideal-int
  4643  pkg net/http, const StatusMovedPermanently ideal-int
  4644  pkg net/http, const StatusMultipleChoices ideal-int
  4645  pkg net/http, const StatusNoContent ideal-int
  4646  pkg net/http, const StatusNonAuthoritativeInfo ideal-int
  4647  pkg net/http, const StatusNotAcceptable ideal-int
  4648  pkg net/http, const StatusNotFound ideal-int
  4649  pkg net/http, const StatusNotImplemented ideal-int
  4650  pkg net/http, const StatusNotModified ideal-int
  4651  pkg net/http, const StatusOK ideal-int
  4652  pkg net/http, const StatusPartialContent ideal-int
  4653  pkg net/http, const StatusPaymentRequired ideal-int
  4654  pkg net/http, const StatusPreconditionFailed ideal-int
  4655  pkg net/http, const StatusProxyAuthRequired ideal-int
  4656  pkg net/http, const StatusRequestEntityTooLarge ideal-int
  4657  pkg net/http, const StatusRequestTimeout ideal-int
  4658  pkg net/http, const StatusRequestURITooLong ideal-int
  4659  pkg net/http, const StatusRequestedRangeNotSatisfiable ideal-int
  4660  pkg net/http, const StatusResetContent ideal-int
  4661  pkg net/http, const StatusSeeOther ideal-int
  4662  pkg net/http, const StatusServiceUnavailable ideal-int
  4663  pkg net/http, const StatusSwitchingProtocols ideal-int
  4664  pkg net/http, const StatusTeapot ideal-int
  4665  pkg net/http, const StatusTemporaryRedirect ideal-int
  4666  pkg net/http, const StatusUnauthorized ideal-int
  4667  pkg net/http, const StatusUnsupportedMediaType ideal-int
  4668  pkg net/http, const StatusUseProxy ideal-int
  4669  pkg net/http, const TimeFormat ideal-string
  4670  pkg net/http, func CanonicalHeaderKey(string) string
  4671  pkg net/http, func DetectContentType([]uint8) string
  4672  pkg net/http, func Error(ResponseWriter, string, int)
  4673  pkg net/http, func FileServer(FileSystem) Handler
  4674  pkg net/http, func Get(string) (*Response, error)
  4675  pkg net/http, func Handle(string, Handler)
  4676  pkg net/http, func HandleFunc(string, func(ResponseWriter, *Request))
  4677  pkg net/http, func Head(string) (*Response, error)
  4678  pkg net/http, func ListenAndServe(string, Handler) error
  4679  pkg net/http, func ListenAndServeTLS(string, string, string, Handler) error
  4680  pkg net/http, func MaxBytesReader(ResponseWriter, io.ReadCloser, int64) io.ReadCloser
  4681  pkg net/http, func NewFileTransport(FileSystem) RoundTripper
  4682  pkg net/http, func NewRequest(string, string, io.Reader) (*Request, error)
  4683  pkg net/http, func NewServeMux() *ServeMux
  4684  pkg net/http, func NotFound(ResponseWriter, *Request)
  4685  pkg net/http, func NotFoundHandler() Handler
  4686  pkg net/http, func ParseHTTPVersion(string) (int, int, bool)
  4687  pkg net/http, func Post(string, string, io.Reader) (*Response, error)
  4688  pkg net/http, func PostForm(string, url.Values) (*Response, error)
  4689  pkg net/http, func ProxyFromEnvironment(*Request) (*url.URL, error)
  4690  pkg net/http, func ProxyURL(*url.URL) func(*Request) (*url.URL, error)
  4691  pkg net/http, func ReadRequest(*bufio.Reader) (*Request, error)
  4692  pkg net/http, func ReadResponse(*bufio.Reader, *Request) (*Response, error)
  4693  pkg net/http, func Redirect(ResponseWriter, *Request, string, int)
  4694  pkg net/http, func RedirectHandler(string, int) Handler
  4695  pkg net/http, func Serve(net.Listener, Handler) error
  4696  pkg net/http, func ServeContent(ResponseWriter, *Request, string, time.Time, io.ReadSeeker)
  4697  pkg net/http, func ServeFile(ResponseWriter, *Request, string)
  4698  pkg net/http, func SetCookie(ResponseWriter, *Cookie)
  4699  pkg net/http, func StatusText(int) string
  4700  pkg net/http, func StripPrefix(string, Handler) Handler
  4701  pkg net/http, func TimeoutHandler(Handler, time.Duration, string) Handler
  4702  pkg net/http, method (*Client) Do(*Request) (*Response, error)
  4703  pkg net/http, method (*Client) Get(string) (*Response, error)
  4704  pkg net/http, method (*Client) Head(string) (*Response, error)
  4705  pkg net/http, method (*Client) Post(string, string, io.Reader) (*Response, error)
  4706  pkg net/http, method (*Client) PostForm(string, url.Values) (*Response, error)
  4707  pkg net/http, method (*Cookie) String() string
  4708  pkg net/http, method (*ProtocolError) Error() string
  4709  pkg net/http, method (*Request) AddCookie(*Cookie)
  4710  pkg net/http, method (*Request) Cookie(string) (*Cookie, error)
  4711  pkg net/http, method (*Request) Cookies() []*Cookie
  4712  pkg net/http, method (*Request) FormFile(string) (multipart.File, *multipart.FileHeader, error)
  4713  pkg net/http, method (*Request) FormValue(string) string
  4714  pkg net/http, method (*Request) MultipartReader() (*multipart.Reader, error)
  4715  pkg net/http, method (*Request) ParseForm() error
  4716  pkg net/http, method (*Request) ParseMultipartForm(int64) error
  4717  pkg net/http, method (*Request) ProtoAtLeast(int, int) bool
  4718  pkg net/http, method (*Request) Referer() string
  4719  pkg net/http, method (*Request) SetBasicAuth(string, string)
  4720  pkg net/http, method (*Request) UserAgent() string
  4721  pkg net/http, method (*Request) Write(io.Writer) error
  4722  pkg net/http, method (*Request) WriteProxy(io.Writer) error
  4723  pkg net/http, method (*Response) Cookies() []*Cookie
  4724  pkg net/http, method (*Response) Location() (*url.URL, error)
  4725  pkg net/http, method (*Response) ProtoAtLeast(int, int) bool
  4726  pkg net/http, method (*Response) Write(io.Writer) error
  4727  pkg net/http, method (*ServeMux) Handle(string, Handler)
  4728  pkg net/http, method (*ServeMux) HandleFunc(string, func(ResponseWriter, *Request))
  4729  pkg net/http, method (*ServeMux) ServeHTTP(ResponseWriter, *Request)
  4730  pkg net/http, method (*Server) ListenAndServe() error
  4731  pkg net/http, method (*Server) ListenAndServeTLS(string, string) error
  4732  pkg net/http, method (*Server) Serve(net.Listener) error
  4733  pkg net/http, method (*Transport) CloseIdleConnections()
  4734  pkg net/http, method (*Transport) RegisterProtocol(string, RoundTripper)
  4735  pkg net/http, method (*Transport) RoundTrip(*Request) (*Response, error)
  4736  pkg net/http, method (Dir) Open(string) (File, error)
  4737  pkg net/http, method (HandlerFunc) ServeHTTP(ResponseWriter, *Request)
  4738  pkg net/http, method (Header) Add(string, string)
  4739  pkg net/http, method (Header) Del(string)
  4740  pkg net/http, method (Header) Get(string) string
  4741  pkg net/http, method (Header) Set(string, string)
  4742  pkg net/http, method (Header) Write(io.Writer) error
  4743  pkg net/http, method (Header) WriteSubset(io.Writer, map[string]bool) error
  4744  pkg net/http, type Client struct
  4745  pkg net/http, type Client struct, CheckRedirect func(*Request, []*Request) error
  4746  pkg net/http, type Client struct, Jar CookieJar
  4747  pkg net/http, type Client struct, Transport RoundTripper
  4748  pkg net/http, type Cookie struct
  4749  pkg net/http, type Cookie struct, Domain string
  4750  pkg net/http, type Cookie struct, Expires time.Time
  4751  pkg net/http, type Cookie struct, HttpOnly bool
  4752  pkg net/http, type Cookie struct, MaxAge int
  4753  pkg net/http, type Cookie struct, Name string
  4754  pkg net/http, type Cookie struct, Path string
  4755  pkg net/http, type Cookie struct, Raw string
  4756  pkg net/http, type Cookie struct, RawExpires string
  4757  pkg net/http, type Cookie struct, Secure bool
  4758  pkg net/http, type Cookie struct, Unparsed []string
  4759  pkg net/http, type Cookie struct, Value string
  4760  pkg net/http, type CookieJar interface { Cookies, SetCookies }
  4761  pkg net/http, type CookieJar interface, Cookies(*url.URL) []*Cookie
  4762  pkg net/http, type CookieJar interface, SetCookies(*url.URL, []*Cookie)
  4763  pkg net/http, type Dir string
  4764  pkg net/http, type File interface { Close, Read, Readdir, Seek, Stat }
  4765  pkg net/http, type File interface, Close() error
  4766  pkg net/http, type File interface, Read([]uint8) (int, error)
  4767  pkg net/http, type File interface, Readdir(int) ([]os.FileInfo, error)
  4768  pkg net/http, type File interface, Seek(int64, int) (int64, error)
  4769  pkg net/http, type File interface, Stat() (os.FileInfo, error)
  4770  pkg net/http, type FileSystem interface { Open }
  4771  pkg net/http, type FileSystem interface, Open(string) (File, error)
  4772  pkg net/http, type Flusher interface { Flush }
  4773  pkg net/http, type Flusher interface, Flush()
  4774  pkg net/http, type Handler interface { ServeHTTP }
  4775  pkg net/http, type Handler interface, ServeHTTP(ResponseWriter, *Request)
  4776  pkg net/http, type HandlerFunc func(ResponseWriter, *Request)
  4777  pkg net/http, type Header map[string][]string
  4778  pkg net/http, type Hijacker interface { Hijack }
  4779  pkg net/http, type Hijacker interface, Hijack() (net.Conn, *bufio.ReadWriter, error)
  4780  pkg net/http, type ProtocolError struct
  4781  pkg net/http, type ProtocolError struct, ErrorString string
  4782  pkg net/http, type Request struct
  4783  pkg net/http, type Request struct, Body io.ReadCloser
  4784  pkg net/http, type Request struct, Close bool
  4785  pkg net/http, type Request struct, ContentLength int64
  4786  pkg net/http, type Request struct, Form url.Values
  4787  pkg net/http, type Request struct, Header Header
  4788  pkg net/http, type Request struct, Host string
  4789  pkg net/http, type Request struct, Method string
  4790  pkg net/http, type Request struct, MultipartForm *multipart.Form
  4791  pkg net/http, type Request struct, Proto string
  4792  pkg net/http, type Request struct, ProtoMajor int
  4793  pkg net/http, type Request struct, ProtoMinor int
  4794  pkg net/http, type Request struct, RemoteAddr string
  4795  pkg net/http, type Request struct, RequestURI string
  4796  pkg net/http, type Request struct, TLS *tls.ConnectionState
  4797  pkg net/http, type Request struct, Trailer Header
  4798  pkg net/http, type Request struct, TransferEncoding []string
  4799  pkg net/http, type Request struct, URL *url.URL
  4800  pkg net/http, type Response struct
  4801  pkg net/http, type Response struct, Body io.ReadCloser
  4802  pkg net/http, type Response struct, Close bool
  4803  pkg net/http, type Response struct, ContentLength int64
  4804  pkg net/http, type Response struct, Header Header
  4805  pkg net/http, type Response struct, Proto string
  4806  pkg net/http, type Response struct, ProtoMajor int
  4807  pkg net/http, type Response struct, ProtoMinor int
  4808  pkg net/http, type Response struct, Request *Request
  4809  pkg net/http, type Response struct, Status string
  4810  pkg net/http, type Response struct, StatusCode int
  4811  pkg net/http, type Response struct, Trailer Header
  4812  pkg net/http, type Response struct, TransferEncoding []string
  4813  pkg net/http, type ResponseWriter interface { Header, Write, WriteHeader }
  4814  pkg net/http, type ResponseWriter interface, Header() Header
  4815  pkg net/http, type ResponseWriter interface, Write([]uint8) (int, error)
  4816  pkg net/http, type ResponseWriter interface, WriteHeader(int)
  4817  pkg net/http, type RoundTripper interface { RoundTrip }
  4818  pkg net/http, type RoundTripper interface, RoundTrip(*Request) (*Response, error)
  4819  pkg net/http, type ServeMux struct
  4820  pkg net/http, type Server struct
  4821  pkg net/http, type Server struct, Addr string
  4822  pkg net/http, type Server struct, Handler Handler
  4823  pkg net/http, type Server struct, MaxHeaderBytes int
  4824  pkg net/http, type Server struct, ReadTimeout time.Duration
  4825  pkg net/http, type Server struct, TLSConfig *tls.Config
  4826  pkg net/http, type Server struct, WriteTimeout time.Duration
  4827  pkg net/http, type Transport struct
  4828  pkg net/http, type Transport struct, Dial func(string, string) (net.Conn, error)
  4829  pkg net/http, type Transport struct, DisableCompression bool
  4830  pkg net/http, type Transport struct, DisableKeepAlives bool
  4831  pkg net/http, type Transport struct, MaxIdleConnsPerHost int
  4832  pkg net/http, type Transport struct, Proxy func(*Request) (*url.URL, error)
  4833  pkg net/http, type Transport struct, TLSClientConfig *tls.Config
  4834  pkg net/http, var DefaultClient *Client
  4835  pkg net/http, var DefaultServeMux *ServeMux
  4836  pkg net/http, var DefaultTransport RoundTripper
  4837  pkg net/http, var ErrBodyNotAllowed error
  4838  pkg net/http, var ErrBodyReadAfterClose error
  4839  pkg net/http, var ErrContentLength error
  4840  pkg net/http, var ErrHandlerTimeout error
  4841  pkg net/http, var ErrHeaderTooLong *ProtocolError
  4842  pkg net/http, var ErrHijacked error
  4843  pkg net/http, var ErrLineTooLong error
  4844  pkg net/http, var ErrMissingBoundary *ProtocolError
  4845  pkg net/http, var ErrMissingContentLength *ProtocolError
  4846  pkg net/http, var ErrMissingFile error
  4847  pkg net/http, var ErrNoCookie error
  4848  pkg net/http, var ErrNoLocation error
  4849  pkg net/http, var ErrNotMultipart *ProtocolError
  4850  pkg net/http, var ErrNotSupported *ProtocolError
  4851  pkg net/http, var ErrShortBody *ProtocolError
  4852  pkg net/http, var ErrUnexpectedTrailer *ProtocolError
  4853  pkg net/http, var ErrWriteAfterFlush error
  4854  pkg net/http/cgi, func Request() (*http.Request, error)
  4855  pkg net/http/cgi, func RequestFromMap(map[string]string) (*http.Request, error)
  4856  pkg net/http/cgi, func Serve(http.Handler) error
  4857  pkg net/http/cgi, method (*Handler) ServeHTTP(http.ResponseWriter, *http.Request)
  4858  pkg net/http/cgi, type Handler struct
  4859  pkg net/http/cgi, type Handler struct, Args []string
  4860  pkg net/http/cgi, type Handler struct, Dir string
  4861  pkg net/http/cgi, type Handler struct, Env []string
  4862  pkg net/http/cgi, type Handler struct, InheritEnv []string
  4863  pkg net/http/cgi, type Handler struct, Logger *log.Logger
  4864  pkg net/http/cgi, type Handler struct, Path string
  4865  pkg net/http/cgi, type Handler struct, PathLocationHandler http.Handler
  4866  pkg net/http/cgi, type Handler struct, Root string
  4867  pkg net/http/fcgi, func Serve(net.Listener, http.Handler) error
  4868  pkg net/http/httptest, const DefaultRemoteAddr ideal-string
  4869  pkg net/http/httptest, func NewRecorder() *ResponseRecorder
  4870  pkg net/http/httptest, func NewServer(http.Handler) *Server
  4871  pkg net/http/httptest, func NewTLSServer(http.Handler) *Server
  4872  pkg net/http/httptest, func NewUnstartedServer(http.Handler) *Server
  4873  pkg net/http/httptest, method (*ResponseRecorder) Flush()
  4874  pkg net/http/httptest, method (*ResponseRecorder) Header() http.Header
  4875  pkg net/http/httptest, method (*ResponseRecorder) Write([]uint8) (int, error)
  4876  pkg net/http/httptest, method (*ResponseRecorder) WriteHeader(int)
  4877  pkg net/http/httptest, method (*Server) Close()
  4878  pkg net/http/httptest, method (*Server) CloseClientConnections()
  4879  pkg net/http/httptest, method (*Server) Start()
  4880  pkg net/http/httptest, method (*Server) StartTLS()
  4881  pkg net/http/httptest, type ResponseRecorder struct
  4882  pkg net/http/httptest, type ResponseRecorder struct, Body *bytes.Buffer
  4883  pkg net/http/httptest, type ResponseRecorder struct, Code int
  4884  pkg net/http/httptest, type ResponseRecorder struct, Flushed bool
  4885  pkg net/http/httptest, type ResponseRecorder struct, HeaderMap http.Header
  4886  pkg net/http/httptest, type Server struct
  4887  pkg net/http/httptest, type Server struct, Config *http.Server
  4888  pkg net/http/httptest, type Server struct, Listener net.Listener
  4889  pkg net/http/httptest, type Server struct, TLS *tls.Config
  4890  pkg net/http/httptest, type Server struct, URL string
  4891  pkg net/http/httputil, func DumpRequest(*http.Request, bool) ([]uint8, error)
  4892  pkg net/http/httputil, func DumpRequestOut(*http.Request, bool) ([]uint8, error)
  4893  pkg net/http/httputil, func DumpResponse(*http.Response, bool) ([]uint8, error)
  4894  pkg net/http/httputil, func NewChunkedReader(io.Reader) io.Reader
  4895  pkg net/http/httputil, func NewChunkedWriter(io.Writer) io.WriteCloser
  4896  pkg net/http/httputil, func NewClientConn(net.Conn, *bufio.Reader) *ClientConn
  4897  pkg net/http/httputil, func NewProxyClientConn(net.Conn, *bufio.Reader) *ClientConn
  4898  pkg net/http/httputil, func NewServerConn(net.Conn, *bufio.Reader) *ServerConn
  4899  pkg net/http/httputil, func NewSingleHostReverseProxy(*url.URL) *ReverseProxy
  4900  pkg net/http/httputil, method (*ClientConn) Close() error
  4901  pkg net/http/httputil, method (*ClientConn) Do(*http.Request) (*http.Response, error)
  4902  pkg net/http/httputil, method (*ClientConn) Hijack() (net.Conn, *bufio.Reader)
  4903  pkg net/http/httputil, method (*ClientConn) Pending() int
  4904  pkg net/http/httputil, method (*ClientConn) Read(*http.Request) (*http.Response, error)
  4905  pkg net/http/httputil, method (*ClientConn) Write(*http.Request) error
  4906  pkg net/http/httputil, method (*ReverseProxy) ServeHTTP(http.ResponseWriter, *http.Request)
  4907  pkg net/http/httputil, method (*ServerConn) Close() error
  4908  pkg net/http/httputil, method (*ServerConn) Hijack() (net.Conn, *bufio.Reader)
  4909  pkg net/http/httputil, method (*ServerConn) Pending() int
  4910  pkg net/http/httputil, method (*ServerConn) Read() (*http.Request, error)
  4911  pkg net/http/httputil, method (*ServerConn) Write(*http.Request, *http.Response) error
  4912  pkg net/http/httputil, type ClientConn struct
  4913  pkg net/http/httputil, type ReverseProxy struct
  4914  pkg net/http/httputil, type ReverseProxy struct, Director func(*http.Request)
  4915  pkg net/http/httputil, type ReverseProxy struct, FlushInterval time.Duration
  4916  pkg net/http/httputil, type ReverseProxy struct, Transport http.RoundTripper
  4917  pkg net/http/httputil, type ServerConn struct
  4918  pkg net/http/httputil, var ErrClosed *http.ProtocolError
  4919  pkg net/http/httputil, var ErrLineTooLong error
  4920  pkg net/http/httputil, var ErrPersistEOF *http.ProtocolError
  4921  pkg net/http/httputil, var ErrPipeline *http.ProtocolError
  4922  pkg net/http/pprof, func Cmdline(http.ResponseWriter, *http.Request)
  4923  pkg net/http/pprof, func Handler(string) http.Handler
  4924  pkg net/http/pprof, func Index(http.ResponseWriter, *http.Request)
  4925  pkg net/http/pprof, func Profile(http.ResponseWriter, *http.Request)
  4926  pkg net/http/pprof, func Symbol(http.ResponseWriter, *http.Request)
  4927  pkg net/mail, func ReadMessage(io.Reader) (*Message, error)
  4928  pkg net/mail, method (*Address) String() string
  4929  pkg net/mail, method (Header) AddressList(string) ([]*Address, error)
  4930  pkg net/mail, method (Header) Date() (time.Time, error)
  4931  pkg net/mail, method (Header) Get(string) string
  4932  pkg net/mail, type Address struct
  4933  pkg net/mail, type Address struct, Address string
  4934  pkg net/mail, type Address struct, Name string
  4935  pkg net/mail, type Header map[string][]string
  4936  pkg net/mail, type Message struct
  4937  pkg net/mail, type Message struct, Body io.Reader
  4938  pkg net/mail, type Message struct, Header Header
  4939  pkg net/mail, var ErrHeaderNotPresent error
  4940  pkg net/rpc, const DefaultDebugPath ideal-string
  4941  pkg net/rpc, const DefaultRPCPath ideal-string
  4942  pkg net/rpc, func Accept(net.Listener)
  4943  pkg net/rpc, func Dial(string, string) (*Client, error)
  4944  pkg net/rpc, func DialHTTP(string, string) (*Client, error)
  4945  pkg net/rpc, func DialHTTPPath(string, string, string) (*Client, error)
  4946  pkg net/rpc, func HandleHTTP()
  4947  pkg net/rpc, func NewClient(io.ReadWriteCloser) *Client
  4948  pkg net/rpc, func NewClientWithCodec(ClientCodec) *Client
  4949  pkg net/rpc, func NewServer() *Server
  4950  pkg net/rpc, func Register(interface{}) error
  4951  pkg net/rpc, func RegisterName(string, interface{}) error
  4952  pkg net/rpc, func ServeCodec(ServerCodec)
  4953  pkg net/rpc, func ServeConn(io.ReadWriteCloser)
  4954  pkg net/rpc, func ServeRequest(ServerCodec) error
  4955  pkg net/rpc, method (*Client) Call(string, interface{}, interface{}) error
  4956  pkg net/rpc, method (*Client) Close() error
  4957  pkg net/rpc, method (*Client) Go(string, interface{}, interface{}, chan *Call) *Call
  4958  pkg net/rpc, method (*Server) Accept(net.Listener)
  4959  pkg net/rpc, method (*Server) HandleHTTP(string, string)
  4960  pkg net/rpc, method (*Server) Register(interface{}) error
  4961  pkg net/rpc, method (*Server) RegisterName(string, interface{}) error
  4962  pkg net/rpc, method (*Server) ServeCodec(ServerCodec)
  4963  pkg net/rpc, method (*Server) ServeConn(io.ReadWriteCloser)
  4964  pkg net/rpc, method (*Server) ServeHTTP(http.ResponseWriter, *http.Request)
  4965  pkg net/rpc, method (*Server) ServeRequest(ServerCodec) error
  4966  pkg net/rpc, method (ServerError) Error() string
  4967  pkg net/rpc, type Call struct
  4968  pkg net/rpc, type Call struct, Args interface{}
  4969  pkg net/rpc, type Call struct, Done chan *Call
  4970  pkg net/rpc, type Call struct, Error error
  4971  pkg net/rpc, type Call struct, Reply interface{}
  4972  pkg net/rpc, type Call struct, ServiceMethod string
  4973  pkg net/rpc, type Client struct
  4974  pkg net/rpc, type ClientCodec interface { Close, ReadResponseBody, ReadResponseHeader, WriteRequest }
  4975  pkg net/rpc, type ClientCodec interface, Close() error
  4976  pkg net/rpc, type ClientCodec interface, ReadResponseBody(interface{}) error
  4977  pkg net/rpc, type ClientCodec interface, ReadResponseHeader(*Response) error
  4978  pkg net/rpc, type ClientCodec interface, WriteRequest(*Request, interface{}) error
  4979  pkg net/rpc, type Request struct
  4980  pkg net/rpc, type Request struct, Seq uint64
  4981  pkg net/rpc, type Request struct, ServiceMethod string
  4982  pkg net/rpc, type Response struct
  4983  pkg net/rpc, type Response struct, Error string
  4984  pkg net/rpc, type Response struct, Seq uint64
  4985  pkg net/rpc, type Response struct, ServiceMethod string
  4986  pkg net/rpc, type Server struct
  4987  pkg net/rpc, type ServerCodec interface { Close, ReadRequestBody, ReadRequestHeader, WriteResponse }
  4988  pkg net/rpc, type ServerCodec interface, Close() error
  4989  pkg net/rpc, type ServerCodec interface, ReadRequestBody(interface{}) error
  4990  pkg net/rpc, type ServerCodec interface, ReadRequestHeader(*Request) error
  4991  pkg net/rpc, type ServerCodec interface, WriteResponse(*Response, interface{}) error
  4992  pkg net/rpc, type ServerError string
  4993  pkg net/rpc, var DefaultServer *Server
  4994  pkg net/rpc, var ErrShutdown error
  4995  pkg net/rpc/jsonrpc, func Dial(string, string) (*rpc.Client, error)
  4996  pkg net/rpc/jsonrpc, func NewClient(io.ReadWriteCloser) *rpc.Client
  4997  pkg net/rpc/jsonrpc, func NewClientCodec(io.ReadWriteCloser) rpc.ClientCodec
  4998  pkg net/rpc/jsonrpc, func NewServerCodec(io.ReadWriteCloser) rpc.ServerCodec
  4999  pkg net/rpc/jsonrpc, func ServeConn(io.ReadWriteCloser)
  5000  pkg net/smtp, func CRAMMD5Auth(string, string) Auth
  5001  pkg net/smtp, func Dial(string) (*Client, error)
  5002  pkg net/smtp, func NewClient(net.Conn, string) (*Client, error)
  5003  pkg net/smtp, func PlainAuth(string, string, string, string) Auth
  5004  pkg net/smtp, func SendMail(string, Auth, string, []string, []uint8) error
  5005  pkg net/smtp, method (*Client) Auth(Auth) error
  5006  pkg net/smtp, method (*Client) Data() (io.WriteCloser, error)
  5007  pkg net/smtp, method (*Client) Extension(string) (bool, string)
  5008  pkg net/smtp, method (*Client) Mail(string) error
  5009  pkg net/smtp, method (*Client) Quit() error
  5010  pkg net/smtp, method (*Client) Rcpt(string) error
  5011  pkg net/smtp, method (*Client) Reset() error
  5012  pkg net/smtp, method (*Client) StartTLS(*tls.Config) error
  5013  pkg net/smtp, method (*Client) Verify(string) error
  5014  pkg net/smtp, type Auth interface { Next, Start }
  5015  pkg net/smtp, type Auth interface, Next([]uint8, bool) ([]uint8, error)
  5016  pkg net/smtp, type Auth interface, Start(*ServerInfo) (string, []uint8, error)
  5017  pkg net/smtp, type Client struct
  5018  pkg net/smtp, type Client struct, Text *textproto.Conn
  5019  pkg net/smtp, type ServerInfo struct
  5020  pkg net/smtp, type ServerInfo struct, Auth []string
  5021  pkg net/smtp, type ServerInfo struct, Name string
  5022  pkg net/smtp, type ServerInfo struct, TLS bool
  5023  pkg net/textproto, func CanonicalMIMEHeaderKey(string) string
  5024  pkg net/textproto, func Dial(string, string) (*Conn, error)
  5025  pkg net/textproto, func NewConn(io.ReadWriteCloser) *Conn
  5026  pkg net/textproto, func NewReader(*bufio.Reader) *Reader
  5027  pkg net/textproto, func NewWriter(*bufio.Writer) *Writer
  5028  pkg net/textproto, method (*Conn) Close() error
  5029  pkg net/textproto, method (*Conn) Cmd(string, ...interface{}) (uint, error)
  5030  pkg net/textproto, method (*Conn) DotReader() io.Reader
  5031  pkg net/textproto, method (*Conn) DotWriter() io.WriteCloser
  5032  pkg net/textproto, method (*Conn) EndRequest(uint)
  5033  pkg net/textproto, method (*Conn) EndResponse(uint)
  5034  pkg net/textproto, method (*Conn) Next() uint
  5035  pkg net/textproto, method (*Conn) PrintfLine(string, ...interface{}) error
  5036  pkg net/textproto, method (*Conn) ReadCodeLine(int) (int, string, error)
  5037  pkg net/textproto, method (*Conn) ReadContinuedLine() (string, error)
  5038  pkg net/textproto, method (*Conn) ReadContinuedLineBytes() ([]uint8, error)
  5039  pkg net/textproto, method (*Conn) ReadDotBytes() ([]uint8, error)
  5040  pkg net/textproto, method (*Conn) ReadDotLines() ([]string, error)
  5041  pkg net/textproto, method (*Conn) ReadLine() (string, error)
  5042  pkg net/textproto, method (*Conn) ReadLineBytes() ([]uint8, error)
  5043  pkg net/textproto, method (*Conn) ReadMIMEHeader() (MIMEHeader, error)
  5044  pkg net/textproto, method (*Conn) ReadResponse(int) (int, string, error)
  5045  pkg net/textproto, method (*Conn) StartRequest(uint)
  5046  pkg net/textproto, method (*Conn) StartResponse(uint)
  5047  pkg net/textproto, method (*Error) Error() string
  5048  pkg net/textproto, method (*Pipeline) EndRequest(uint)
  5049  pkg net/textproto, method (*Pipeline) EndResponse(uint)
  5050  pkg net/textproto, method (*Pipeline) Next() uint
  5051  pkg net/textproto, method (*Pipeline) StartRequest(uint)
  5052  pkg net/textproto, method (*Pipeline) StartResponse(uint)
  5053  pkg net/textproto, method (*Reader) DotReader() io.Reader
  5054  pkg net/textproto, method (*Reader) ReadCodeLine(int) (int, string, error)
  5055  pkg net/textproto, method (*Reader) ReadContinuedLine() (string, error)
  5056  pkg net/textproto, method (*Reader) ReadContinuedLineBytes() ([]uint8, error)
  5057  pkg net/textproto, method (*Reader) ReadDotBytes() ([]uint8, error)
  5058  pkg net/textproto, method (*Reader) ReadDotLines() ([]string, error)
  5059  pkg net/textproto, method (*Reader) ReadLine() (string, error)
  5060  pkg net/textproto, method (*Reader) ReadLineBytes() ([]uint8, error)
  5061  pkg net/textproto, method (*Reader) ReadMIMEHeader() (MIMEHeader, error)
  5062  pkg net/textproto, method (*Reader) ReadResponse(int) (int, string, error)
  5063  pkg net/textproto, method (*Writer) DotWriter() io.WriteCloser
  5064  pkg net/textproto, method (*Writer) PrintfLine(string, ...interface{}) error
  5065  pkg net/textproto, method (MIMEHeader) Add(string, string)
  5066  pkg net/textproto, method (MIMEHeader) Del(string)
  5067  pkg net/textproto, method (MIMEHeader) Get(string) string
  5068  pkg net/textproto, method (MIMEHeader) Set(string, string)
  5069  pkg net/textproto, method (ProtocolError) Error() string
  5070  pkg net/textproto, type Conn struct
  5071  pkg net/textproto, type Conn struct, embedded Pipeline
  5072  pkg net/textproto, type Conn struct, embedded Reader
  5073  pkg net/textproto, type Conn struct, embedded Writer
  5074  pkg net/textproto, type Error struct
  5075  pkg net/textproto, type Error struct, Code int
  5076  pkg net/textproto, type Error struct, Msg string
  5077  pkg net/textproto, type MIMEHeader map[string][]string
  5078  pkg net/textproto, type Pipeline struct
  5079  pkg net/textproto, type ProtocolError string
  5080  pkg net/textproto, type Reader struct
  5081  pkg net/textproto, type Reader struct, R *bufio.Reader
  5082  pkg net/textproto, type Writer struct
  5083  pkg net/textproto, type Writer struct, W *bufio.Writer
  5084  pkg net/url, func Parse(string) (*URL, error)
  5085  pkg net/url, func ParseQuery(string) (Values, error)
  5086  pkg net/url, func ParseRequestURI(string) (*URL, error)
  5087  pkg net/url, func QueryEscape(string) string
  5088  pkg net/url, func QueryUnescape(string) (string, error)
  5089  pkg net/url, func User(string) *Userinfo
  5090  pkg net/url, func UserPassword(string, string) *Userinfo
  5091  pkg net/url, method (*Error) Error() string
  5092  pkg net/url, method (*URL) IsAbs() bool
  5093  pkg net/url, method (*URL) Parse(string) (*URL, error)
  5094  pkg net/url, method (*URL) Query() Values
  5095  pkg net/url, method (*URL) RequestURI() string
  5096  pkg net/url, method (*URL) ResolveReference(*URL) *URL
  5097  pkg net/url, method (*URL) String() string
  5098  pkg net/url, method (*Userinfo) Password() (string, bool)
  5099  pkg net/url, method (*Userinfo) String() string
  5100  pkg net/url, method (*Userinfo) Username() string
  5101  pkg net/url, method (EscapeError) Error() string
  5102  pkg net/url, method (Values) Add(string, string)
  5103  pkg net/url, method (Values) Del(string)
  5104  pkg net/url, method (Values) Encode() string
  5105  pkg net/url, method (Values) Get(string) string
  5106  pkg net/url, method (Values) Set(string, string)
  5107  pkg net/url, type Error struct
  5108  pkg net/url, type Error struct, Err error
  5109  pkg net/url, type Error struct, Op string
  5110  pkg net/url, type Error struct, URL string
  5111  pkg net/url, type EscapeError string
  5112  pkg net/url, type URL struct
  5113  pkg net/url, type URL struct, Fragment string
  5114  pkg net/url, type URL struct, Host string
  5115  pkg net/url, type URL struct, Opaque string
  5116  pkg net/url, type URL struct, Path string
  5117  pkg net/url, type URL struct, RawQuery string
  5118  pkg net/url, type URL struct, Scheme string
  5119  pkg net/url, type URL struct, User *Userinfo
  5120  pkg net/url, type Userinfo struct
  5121  pkg net/url, type Values map[string][]string
  5122  pkg os, const DevNull ideal-string
  5123  pkg os, const ModeAppend FileMode
  5124  pkg os, const ModeCharDevice FileMode
  5125  pkg os, const ModeDevice FileMode
  5126  pkg os, const ModeDir FileMode
  5127  pkg os, const ModeExclusive FileMode
  5128  pkg os, const ModeNamedPipe FileMode
  5129  pkg os, const ModePerm FileMode
  5130  pkg os, const ModeSetgid FileMode
  5131  pkg os, const ModeSetuid FileMode
  5132  pkg os, const ModeSocket FileMode
  5133  pkg os, const ModeSticky FileMode
  5134  pkg os, const ModeSymlink FileMode
  5135  pkg os, const ModeTemporary FileMode
  5136  pkg os, const ModeType FileMode
  5137  pkg os, const O_APPEND int
  5138  pkg os, const O_CREATE int
  5139  pkg os, const O_EXCL int
  5140  pkg os, const O_RDONLY int
  5141  pkg os, const O_RDWR int
  5142  pkg os, const O_SYNC int
  5143  pkg os, const O_TRUNC int
  5144  pkg os, const O_WRONLY int
  5145  pkg os, const PathListSeparator ideal-char
  5146  pkg os, const PathSeparator ideal-char
  5147  pkg os, const SEEK_CUR int
  5148  pkg os, const SEEK_END int
  5149  pkg os, const SEEK_SET int
  5150  pkg os, func Chdir(string) error
  5151  pkg os, func Chmod(string, FileMode) error
  5152  pkg os, func Chown(string, int, int) error
  5153  pkg os, func Chtimes(string, time.Time, time.Time) error
  5154  pkg os, func Clearenv()
  5155  pkg os, func Create(string) (*File, error)
  5156  pkg os, func Environ() []string
  5157  pkg os, func Exit(int)
  5158  pkg os, func Expand(string, func(string) string) string
  5159  pkg os, func ExpandEnv(string) string
  5160  pkg os, func FindProcess(int) (*Process, error)
  5161  pkg os, func Getegid() int
  5162  pkg os, func Getenv(string) string
  5163  pkg os, func Geteuid() int
  5164  pkg os, func Getgid() int
  5165  pkg os, func Getgroups() ([]int, error)
  5166  pkg os, func Getpagesize() int
  5167  pkg os, func Getpid() int
  5168  pkg os, func Getppid() int
  5169  pkg os, func Getuid() int
  5170  pkg os, func Getwd() (string, error)
  5171  pkg os, func Hostname() (string, error)
  5172  pkg os, func IsExist(error) bool
  5173  pkg os, func IsNotExist(error) bool
  5174  pkg os, func IsPathSeparator(uint8) bool
  5175  pkg os, func IsPermission(error) bool
  5176  pkg os, func Lchown(string, int, int) error
  5177  pkg os, func Link(string, string) error
  5178  pkg os, func Lstat(string) (FileInfo, error)
  5179  pkg os, func Mkdir(string, FileMode) error
  5180  pkg os, func MkdirAll(string, FileMode) error
  5181  pkg os, func NewFile(uintptr, string) *File
  5182  pkg os, func NewSyscallError(string, error) error
  5183  pkg os, func Open(string) (*File, error)
  5184  pkg os, func OpenFile(string, int, FileMode) (*File, error)
  5185  pkg os, func Pipe() (*File, *File, error)
  5186  pkg os, func Readlink(string) (string, error)
  5187  pkg os, func Remove(string) error
  5188  pkg os, func RemoveAll(string) error
  5189  pkg os, func Rename(string, string) error
  5190  pkg os, func SameFile(FileInfo, FileInfo) bool
  5191  pkg os, func Setenv(string, string) error
  5192  pkg os, func StartProcess(string, []string, *ProcAttr) (*Process, error)
  5193  pkg os, func Stat(string) (FileInfo, error)
  5194  pkg os, func Symlink(string, string) error
  5195  pkg os, func TempDir() string
  5196  pkg os, func Truncate(string, int64) error
  5197  pkg os, method (*File) Chdir() error
  5198  pkg os, method (*File) Chmod(FileMode) error
  5199  pkg os, method (*File) Chown(int, int) error
  5200  pkg os, method (*File) Close() error
  5201  pkg os, method (*File) Fd() uintptr
  5202  pkg os, method (*File) Name() string
  5203  pkg os, method (*File) Read([]uint8) (int, error)
  5204  pkg os, method (*File) ReadAt([]uint8, int64) (int, error)
  5205  pkg os, method (*File) Readdir(int) ([]FileInfo, error)
  5206  pkg os, method (*File) Readdirnames(int) ([]string, error)
  5207  pkg os, method (*File) Seek(int64, int) (int64, error)
  5208  pkg os, method (*File) Stat() (FileInfo, error)
  5209  pkg os, method (*File) Sync() error
  5210  pkg os, method (*File) Truncate(int64) error
  5211  pkg os, method (*File) Write([]uint8) (int, error)
  5212  pkg os, method (*File) WriteAt([]uint8, int64) (int, error)
  5213  pkg os, method (*File) WriteString(string) (int, error)
  5214  pkg os, method (*LinkError) Error() string
  5215  pkg os, method (*PathError) Error() string
  5216  pkg os, method (*Process) Kill() error
  5217  pkg os, method (*Process) Release() error
  5218  pkg os, method (*Process) Signal(Signal) error
  5219  pkg os, method (*Process) Wait() (*ProcessState, error)
  5220  pkg os, method (*ProcessState) Exited() bool
  5221  pkg os, method (*ProcessState) Pid() int
  5222  pkg os, method (*ProcessState) String() string
  5223  pkg os, method (*ProcessState) Success() bool
  5224  pkg os, method (*ProcessState) Sys() interface{}
  5225  pkg os, method (*ProcessState) SysUsage() interface{}
  5226  pkg os, method (*ProcessState) SystemTime() time.Duration
  5227  pkg os, method (*ProcessState) UserTime() time.Duration
  5228  pkg os, method (*SyscallError) Error() string
  5229  pkg os, method (FileMode) IsDir() bool
  5230  pkg os, method (FileMode) Perm() FileMode
  5231  pkg os, method (FileMode) String() string
  5232  pkg os, type File struct
  5233  pkg os, type FileInfo interface { IsDir, ModTime, Mode, Name, Size, Sys }
  5234  pkg os, type FileInfo interface, IsDir() bool
  5235  pkg os, type FileInfo interface, ModTime() time.Time
  5236  pkg os, type FileInfo interface, Mode() FileMode
  5237  pkg os, type FileInfo interface, Name() string
  5238  pkg os, type FileInfo interface, Size() int64
  5239  pkg os, type FileInfo interface, Sys() interface{}
  5240  pkg os, type FileMode uint32
  5241  pkg os, type LinkError struct
  5242  pkg os, type LinkError struct, Err error
  5243  pkg os, type LinkError struct, New string
  5244  pkg os, type LinkError struct, Old string
  5245  pkg os, type LinkError struct, Op string
  5246  pkg os, type PathError struct
  5247  pkg os, type PathError struct, Err error
  5248  pkg os, type PathError struct, Op string
  5249  pkg os, type PathError struct, Path string
  5250  pkg os, type ProcAttr struct
  5251  pkg os, type ProcAttr struct, Dir string
  5252  pkg os, type ProcAttr struct, Env []string
  5253  pkg os, type ProcAttr struct, Files []*File
  5254  pkg os, type ProcAttr struct, Sys *syscall.SysProcAttr
  5255  pkg os, type Process struct
  5256  pkg os, type Process struct, Pid int
  5257  pkg os, type ProcessState struct
  5258  pkg os, type Signal interface { Signal, String }
  5259  pkg os, type Signal interface, Signal()
  5260  pkg os, type Signal interface, String() string
  5261  pkg os, type SyscallError struct
  5262  pkg os, type SyscallError struct, Err error
  5263  pkg os, type SyscallError struct, Syscall string
  5264  pkg os, var Args []string
  5265  pkg os, var ErrExist error
  5266  pkg os, var ErrInvalid error
  5267  pkg os, var ErrNotExist error
  5268  pkg os, var ErrPermission error
  5269  pkg os, var Interrupt Signal
  5270  pkg os, var Kill Signal
  5271  pkg os, var Stderr *File
  5272  pkg os, var Stdin *File
  5273  pkg os, var Stdout *File
  5274  pkg os/exec, func Command(string, ...string) *Cmd
  5275  pkg os/exec, func LookPath(string) (string, error)
  5276  pkg os/exec, method (*Cmd) CombinedOutput() ([]uint8, error)
  5277  pkg os/exec, method (*Cmd) Output() ([]uint8, error)
  5278  pkg os/exec, method (*Cmd) Run() error
  5279  pkg os/exec, method (*Cmd) Start() error
  5280  pkg os/exec, method (*Cmd) StderrPipe() (io.ReadCloser, error)
  5281  pkg os/exec, method (*Cmd) StdinPipe() (io.WriteCloser, error)
  5282  pkg os/exec, method (*Cmd) StdoutPipe() (io.ReadCloser, error)
  5283  pkg os/exec, method (*Cmd) Wait() error
  5284  pkg os/exec, method (*Error) Error() string
  5285  pkg os/exec, method (*ExitError) Error() string
  5286  pkg os/exec, method (ExitError) Exited() bool
  5287  pkg os/exec, method (ExitError) Pid() int
  5288  pkg os/exec, method (ExitError) String() string
  5289  pkg os/exec, method (ExitError) Success() bool
  5290  pkg os/exec, method (ExitError) Sys() interface{}
  5291  pkg os/exec, method (ExitError) SysUsage() interface{}
  5292  pkg os/exec, method (ExitError) SystemTime() time.Duration
  5293  pkg os/exec, method (ExitError) UserTime() time.Duration
  5294  pkg os/exec, type Cmd struct
  5295  pkg os/exec, type Cmd struct, Args []string
  5296  pkg os/exec, type Cmd struct, Dir string
  5297  pkg os/exec, type Cmd struct, Env []string
  5298  pkg os/exec, type Cmd struct, ExtraFiles []*os.File
  5299  pkg os/exec, type Cmd struct, Path string
  5300  pkg os/exec, type Cmd struct, Process *os.Process
  5301  pkg os/exec, type Cmd struct, ProcessState *os.ProcessState
  5302  pkg os/exec, type Cmd struct, Stderr io.Writer
  5303  pkg os/exec, type Cmd struct, Stdin io.Reader
  5304  pkg os/exec, type Cmd struct, Stdout io.Writer
  5305  pkg os/exec, type Cmd struct, SysProcAttr *syscall.SysProcAttr
  5306  pkg os/exec, type Error struct
  5307  pkg os/exec, type Error struct, Err error
  5308  pkg os/exec, type Error struct, Name string
  5309  pkg os/exec, type ExitError struct
  5310  pkg os/exec, type ExitError struct, embedded *os.ProcessState
  5311  pkg os/exec, var ErrNotFound error
  5312  pkg os/signal, func Notify(chan<- os.Signal, ...os.Signal)
  5313  pkg os/user, func Current() (*User, error)
  5314  pkg os/user, func Lookup(string) (*User, error)
  5315  pkg os/user, func LookupId(string) (*User, error)
  5316  pkg os/user, method (UnknownUserError) Error() string
  5317  pkg os/user, method (UnknownUserIdError) Error() string
  5318  pkg os/user, type UnknownUserError string
  5319  pkg os/user, type UnknownUserIdError int
  5320  pkg os/user, type User struct
  5321  pkg os/user, type User struct, Gid string
  5322  pkg os/user, type User struct, HomeDir string
  5323  pkg os/user, type User struct, Name string
  5324  pkg os/user, type User struct, Uid string
  5325  pkg os/user, type User struct, Username string
  5326  pkg path, func Base(string) string
  5327  pkg path, func Clean(string) string
  5328  pkg path, func Dir(string) string
  5329  pkg path, func Ext(string) string
  5330  pkg path, func IsAbs(string) bool
  5331  pkg path, func Join(...string) string
  5332  pkg path, func Match(string, string) (bool, error)
  5333  pkg path, func Split(string) (string, string)
  5334  pkg path, var ErrBadPattern error
  5335  pkg path/filepath, const ListSeparator ideal-char
  5336  pkg path/filepath, const Separator ideal-char
  5337  pkg path/filepath, func Abs(string) (string, error)
  5338  pkg path/filepath, func Base(string) string
  5339  pkg path/filepath, func Clean(string) string
  5340  pkg path/filepath, func Dir(string) string
  5341  pkg path/filepath, func EvalSymlinks(string) (string, error)
  5342  pkg path/filepath, func Ext(string) string
  5343  pkg path/filepath, func FromSlash(string) string
  5344  pkg path/filepath, func Glob(string) ([]string, error)
  5345  pkg path/filepath, func HasPrefix(string, string) bool
  5346  pkg path/filepath, func IsAbs(string) bool
  5347  pkg path/filepath, func Join(...string) string
  5348  pkg path/filepath, func Match(string, string) (bool, error)
  5349  pkg path/filepath, func Rel(string, string) (string, error)
  5350  pkg path/filepath, func Split(string) (string, string)
  5351  pkg path/filepath, func SplitList(string) []string
  5352  pkg path/filepath, func ToSlash(string) string
  5353  pkg path/filepath, func VolumeName(string) string
  5354  pkg path/filepath, func Walk(string, WalkFunc) error
  5355  pkg path/filepath, type WalkFunc func(string, os.FileInfo, error) error
  5356  pkg path/filepath, var ErrBadPattern error
  5357  pkg path/filepath, var SkipDir error
  5358  pkg reflect, const Array Kind
  5359  pkg reflect, const Bool Kind
  5360  pkg reflect, const BothDir ChanDir
  5361  pkg reflect, const Chan Kind
  5362  pkg reflect, const Complex128 Kind
  5363  pkg reflect, const Complex64 Kind
  5364  pkg reflect, const Float32 Kind
  5365  pkg reflect, const Float64 Kind
  5366  pkg reflect, const Func Kind
  5367  pkg reflect, const Int Kind
  5368  pkg reflect, const Int16 Kind
  5369  pkg reflect, const Int32 Kind
  5370  pkg reflect, const Int64 Kind
  5371  pkg reflect, const Int8 Kind
  5372  pkg reflect, const Interface Kind
  5373  pkg reflect, const Invalid Kind
  5374  pkg reflect, const Map Kind
  5375  pkg reflect, const Ptr Kind
  5376  pkg reflect, const RecvDir ChanDir
  5377  pkg reflect, const SendDir ChanDir
  5378  pkg reflect, const Slice Kind
  5379  pkg reflect, const String Kind
  5380  pkg reflect, const Struct Kind
  5381  pkg reflect, const Uint Kind
  5382  pkg reflect, const Uint16 Kind
  5383  pkg reflect, const Uint32 Kind
  5384  pkg reflect, const Uint64 Kind
  5385  pkg reflect, const Uint8 Kind
  5386  pkg reflect, const Uintptr Kind
  5387  pkg reflect, const UnsafePointer Kind
  5388  pkg reflect, func Append(Value, ...Value) Value
  5389  pkg reflect, func AppendSlice(Value, Value) Value
  5390  pkg reflect, func Copy(Value, Value) int
  5391  pkg reflect, func DeepEqual(interface{}, interface{}) bool
  5392  pkg reflect, func Indirect(Value) Value
  5393  pkg reflect, func MakeChan(Type, int) Value
  5394  pkg reflect, func MakeMap(Type) Value
  5395  pkg reflect, func MakeSlice(Type, int, int) Value
  5396  pkg reflect, func New(Type) Value
  5397  pkg reflect, func NewAt(Type, unsafe.Pointer) Value
  5398  pkg reflect, func PtrTo(Type) Type
  5399  pkg reflect, func TypeOf(interface{}) Type
  5400  pkg reflect, func ValueOf(interface{}) Value
  5401  pkg reflect, func Zero(Type) Value
  5402  pkg reflect, method (*ValueError) Error() string
  5403  pkg reflect, method (ChanDir) String() string
  5404  pkg reflect, method (Kind) String() string
  5405  pkg reflect, method (StructTag) Get(string) string
  5406  pkg reflect, method (Value) Addr() Value
  5407  pkg reflect, method (Value) Bool() bool
  5408  pkg reflect, method (Value) Bytes() []uint8
  5409  pkg reflect, method (Value) Call([]Value) []Value
  5410  pkg reflect, method (Value) CallSlice([]Value) []Value
  5411  pkg reflect, method (Value) CanAddr() bool
  5412  pkg reflect, method (Value) CanInterface() bool
  5413  pkg reflect, method (Value) CanSet() bool
  5414  pkg reflect, method (Value) Cap() int
  5415  pkg reflect, method (Value) Close()
  5416  pkg reflect, method (Value) Complex() complex128
  5417  pkg reflect, method (Value) Elem() Value
  5418  pkg reflect, method (Value) Field(int) Value
  5419  pkg reflect, method (Value) FieldByIndex([]int) Value
  5420  pkg reflect, method (Value) FieldByName(string) Value
  5421  pkg reflect, method (Value) FieldByNameFunc(func(string) bool) Value
  5422  pkg reflect, method (Value) Float() float64
  5423  pkg reflect, method (Value) Index(int) Value
  5424  pkg reflect, method (Value) Int() int64
  5425  pkg reflect, method (Value) Interface() interface{}
  5426  pkg reflect, method (Value) InterfaceData() [2]uintptr
  5427  pkg reflect, method (Value) IsNil() bool
  5428  pkg reflect, method (Value) IsValid() bool
  5429  pkg reflect, method (Value) Kind() Kind
  5430  pkg reflect, method (Value) Len() int
  5431  pkg reflect, method (Value) MapIndex(Value) Value
  5432  pkg reflect, method (Value) MapKeys() []Value
  5433  pkg reflect, method (Value) Method(int) Value
  5434  pkg reflect, method (Value) MethodByName(string) Value
  5435  pkg reflect, method (Value) NumField() int
  5436  pkg reflect, method (Value) NumMethod() int
  5437  pkg reflect, method (Value) OverflowComplex(complex128) bool
  5438  pkg reflect, method (Value) OverflowFloat(float64) bool
  5439  pkg reflect, method (Value) OverflowInt(int64) bool
  5440  pkg reflect, method (Value) OverflowUint(uint64) bool
  5441  pkg reflect, method (Value) Pointer() uintptr
  5442  pkg reflect, method (Value) Recv() (Value, bool)
  5443  pkg reflect, method (Value) Send(Value)
  5444  pkg reflect, method (Value) Set(Value)
  5445  pkg reflect, method (Value) SetBool(bool)
  5446  pkg reflect, method (Value) SetBytes([]uint8)
  5447  pkg reflect, method (Value) SetComplex(complex128)
  5448  pkg reflect, method (Value) SetFloat(float64)
  5449  pkg reflect, method (Value) SetInt(int64)
  5450  pkg reflect, method (Value) SetLen(int)
  5451  pkg reflect, method (Value) SetMapIndex(Value, Value)
  5452  pkg reflect, method (Value) SetPointer(unsafe.Pointer)
  5453  pkg reflect, method (Value) SetString(string)
  5454  pkg reflect, method (Value) SetUint(uint64)
  5455  pkg reflect, method (Value) Slice(int, int) Value
  5456  pkg reflect, method (Value) String() string
  5457  pkg reflect, method (Value) TryRecv() (Value, bool)
  5458  pkg reflect, method (Value) TrySend(Value) bool
  5459  pkg reflect, method (Value) Type() Type
  5460  pkg reflect, method (Value) Uint() uint64
  5461  pkg reflect, method (Value) UnsafeAddr() uintptr
  5462  pkg reflect, type ChanDir int
  5463  pkg reflect, type Kind uint
  5464  pkg reflect, type Method struct
  5465  pkg reflect, type Method struct, Func Value
  5466  pkg reflect, type Method struct, Index int
  5467  pkg reflect, type Method struct, Name string
  5468  pkg reflect, type Method struct, PkgPath string
  5469  pkg reflect, type Method struct, Type Type
  5470  pkg reflect, type SliceHeader struct
  5471  pkg reflect, type SliceHeader struct, Cap int
  5472  pkg reflect, type SliceHeader struct, Data uintptr
  5473  pkg reflect, type SliceHeader struct, Len int
  5474  pkg reflect, type StringHeader struct
  5475  pkg reflect, type StringHeader struct, Data uintptr
  5476  pkg reflect, type StringHeader struct, Len int
  5477  pkg reflect, type StructField struct
  5478  pkg reflect, type StructField struct, Anonymous bool
  5479  pkg reflect, type StructField struct, Index []int
  5480  pkg reflect, type StructField struct, Name string
  5481  pkg reflect, type StructField struct, Offset uintptr
  5482  pkg reflect, type StructField struct, PkgPath string
  5483  pkg reflect, type StructField struct, Tag StructTag
  5484  pkg reflect, type StructField struct, Type Type
  5485  pkg reflect, type StructTag string
  5486  pkg reflect, type Type interface, Align() int
  5487  pkg reflect, type Type interface, AssignableTo(Type) bool
  5488  pkg reflect, type Type interface, Bits() int
  5489  pkg reflect, type Type interface, ChanDir() ChanDir
  5490  pkg reflect, type Type interface, Elem() Type
  5491  pkg reflect, type Type interface, Field(int) StructField
  5492  pkg reflect, type Type interface, FieldAlign() int
  5493  pkg reflect, type Type interface, FieldByIndex([]int) StructField
  5494  pkg reflect, type Type interface, FieldByName(string) (StructField, bool)
  5495  pkg reflect, type Type interface, FieldByNameFunc(func(string) bool) (StructField, bool)
  5496  pkg reflect, type Type interface, Implements(Type) bool
  5497  pkg reflect, type Type interface, In(int) Type
  5498  pkg reflect, type Type interface, IsVariadic() bool
  5499  pkg reflect, type Type interface, Key() Type
  5500  pkg reflect, type Type interface, Kind() Kind
  5501  pkg reflect, type Type interface, Len() int
  5502  pkg reflect, type Type interface, Method(int) Method
  5503  pkg reflect, type Type interface, MethodByName(string) (Method, bool)
  5504  pkg reflect, type Type interface, Name() string
  5505  pkg reflect, type Type interface, NumField() int
  5506  pkg reflect, type Type interface, NumIn() int
  5507  pkg reflect, type Type interface, NumMethod() int
  5508  pkg reflect, type Type interface, NumOut() int
  5509  pkg reflect, type Type interface, Out(int) Type
  5510  pkg reflect, type Type interface, PkgPath() string
  5511  pkg reflect, type Type interface, Size() uintptr
  5512  pkg reflect, type Type interface, String() string
  5513  pkg reflect, type Type interface, unexported methods
  5514  pkg reflect, type Value struct
  5515  pkg reflect, type ValueError struct
  5516  pkg reflect, type ValueError struct, Kind Kind
  5517  pkg reflect, type ValueError struct, Method string
  5518  pkg regexp, func Compile(string) (*Regexp, error)
  5519  pkg regexp, func CompilePOSIX(string) (*Regexp, error)
  5520  pkg regexp, func Match(string, []uint8) (bool, error)
  5521  pkg regexp, func MatchReader(string, io.RuneReader) (bool, error)
  5522  pkg regexp, func MatchString(string, string) (bool, error)
  5523  pkg regexp, func MustCompile(string) *Regexp
  5524  pkg regexp, func MustCompilePOSIX(string) *Regexp
  5525  pkg regexp, func QuoteMeta(string) string
  5526  pkg regexp, method (*Regexp) Expand([]uint8, []uint8, []uint8, []int) []uint8
  5527  pkg regexp, method (*Regexp) ExpandString([]uint8, string, string, []int) []uint8
  5528  pkg regexp, method (*Regexp) Find([]uint8) []uint8
  5529  pkg regexp, method (*Regexp) FindAll([]uint8, int) [][]uint8
  5530  pkg regexp, method (*Regexp) FindAllIndex([]uint8, int) [][]int
  5531  pkg regexp, method (*Regexp) FindAllString(string, int) []string
  5532  pkg regexp, method (*Regexp) FindAllStringIndex(string, int) [][]int
  5533  pkg regexp, method (*Regexp) FindAllStringSubmatch(string, int) [][]string
  5534  pkg regexp, method (*Regexp) FindAllStringSubmatchIndex(string, int) [][]int
  5535  pkg regexp, method (*Regexp) FindAllSubmatch([]uint8, int) [][][]uint8
  5536  pkg regexp, method (*Regexp) FindAllSubmatchIndex([]uint8, int) [][]int
  5537  pkg regexp, method (*Regexp) FindIndex([]uint8) []int
  5538  pkg regexp, method (*Regexp) FindReaderIndex(io.RuneReader) []int
  5539  pkg regexp, method (*Regexp) FindReaderSubmatchIndex(io.RuneReader) []int
  5540  pkg regexp, method (*Regexp) FindString(string) string
  5541  pkg regexp, method (*Regexp) FindStringIndex(string) []int
  5542  pkg regexp, method (*Regexp) FindStringSubmatch(string) []string
  5543  pkg regexp, method (*Regexp) FindStringSubmatchIndex(string) []int
  5544  pkg regexp, method (*Regexp) FindSubmatch([]uint8) [][]uint8
  5545  pkg regexp, method (*Regexp) FindSubmatchIndex([]uint8) []int
  5546  pkg regexp, method (*Regexp) LiteralPrefix() (string, bool)
  5547  pkg regexp, method (*Regexp) Match([]uint8) bool
  5548  pkg regexp, method (*Regexp) MatchReader(io.RuneReader) bool
  5549  pkg regexp, method (*Regexp) MatchString(string) bool
  5550  pkg regexp, method (*Regexp) NumSubexp() int
  5551  pkg regexp, method (*Regexp) ReplaceAll([]uint8, []uint8) []uint8
  5552  pkg regexp, method (*Regexp) ReplaceAllFunc([]uint8, func([]uint8) []uint8) []uint8
  5553  pkg regexp, method (*Regexp) ReplaceAllLiteral([]uint8, []uint8) []uint8
  5554  pkg regexp, method (*Regexp) ReplaceAllLiteralString(string, string) string
  5555  pkg regexp, method (*Regexp) ReplaceAllString(string, string) string
  5556  pkg regexp, method (*Regexp) ReplaceAllStringFunc(string, func(string) string) string
  5557  pkg regexp, method (*Regexp) String() string
  5558  pkg regexp, method (*Regexp) SubexpNames() []string
  5559  pkg regexp, type Regexp struct
  5560  pkg regexp/syntax, const ClassNL Flags
  5561  pkg regexp/syntax, const DotNL Flags
  5562  pkg regexp/syntax, const EmptyBeginLine EmptyOp
  5563  pkg regexp/syntax, const EmptyBeginText EmptyOp
  5564  pkg regexp/syntax, const EmptyEndLine EmptyOp
  5565  pkg regexp/syntax, const EmptyEndText EmptyOp
  5566  pkg regexp/syntax, const EmptyNoWordBoundary EmptyOp
  5567  pkg regexp/syntax, const EmptyWordBoundary EmptyOp
  5568  pkg regexp/syntax, const ErrInternalError ErrorCode
  5569  pkg regexp/syntax, const ErrInvalidCharClass ErrorCode
  5570  pkg regexp/syntax, const ErrInvalidCharRange ErrorCode
  5571  pkg regexp/syntax, const ErrInvalidEscape ErrorCode
  5572  pkg regexp/syntax, const ErrInvalidNamedCapture ErrorCode
  5573  pkg regexp/syntax, const ErrInvalidPerlOp ErrorCode
  5574  pkg regexp/syntax, const ErrInvalidRepeatOp ErrorCode
  5575  pkg regexp/syntax, const ErrInvalidRepeatSize ErrorCode
  5576  pkg regexp/syntax, const ErrInvalidUTF8 ErrorCode
  5577  pkg regexp/syntax, const ErrMissingBracket ErrorCode
  5578  pkg regexp/syntax, const ErrMissingParen ErrorCode
  5579  pkg regexp/syntax, const ErrMissingRepeatArgument ErrorCode
  5580  pkg regexp/syntax, const ErrTrailingBackslash ErrorCode
  5581  pkg regexp/syntax, const FoldCase Flags
  5582  pkg regexp/syntax, const InstAlt InstOp
  5583  pkg regexp/syntax, const InstAltMatch InstOp
  5584  pkg regexp/syntax, const InstCapture InstOp
  5585  pkg regexp/syntax, const InstEmptyWidth InstOp
  5586  pkg regexp/syntax, const InstFail InstOp
  5587  pkg regexp/syntax, const InstMatch InstOp
  5588  pkg regexp/syntax, const InstNop InstOp
  5589  pkg regexp/syntax, const InstRune InstOp
  5590  pkg regexp/syntax, const InstRune1 InstOp
  5591  pkg regexp/syntax, const InstRuneAny InstOp
  5592  pkg regexp/syntax, const InstRuneAnyNotNL InstOp
  5593  pkg regexp/syntax, const Literal Flags
  5594  pkg regexp/syntax, const MatchNL Flags
  5595  pkg regexp/syntax, const NonGreedy Flags
  5596  pkg regexp/syntax, const OneLine Flags
  5597  pkg regexp/syntax, const OpAlternate Op
  5598  pkg regexp/syntax, const OpAnyChar Op
  5599  pkg regexp/syntax, const OpAnyCharNotNL Op
  5600  pkg regexp/syntax, const OpBeginLine Op
  5601  pkg regexp/syntax, const OpBeginText Op
  5602  pkg regexp/syntax, const OpCapture Op
  5603  pkg regexp/syntax, const OpCharClass Op
  5604  pkg regexp/syntax, const OpConcat Op
  5605  pkg regexp/syntax, const OpEmptyMatch Op
  5606  pkg regexp/syntax, const OpEndLine Op
  5607  pkg regexp/syntax, const OpEndText Op
  5608  pkg regexp/syntax, const OpLiteral Op
  5609  pkg regexp/syntax, const OpNoMatch Op
  5610  pkg regexp/syntax, const OpNoWordBoundary Op
  5611  pkg regexp/syntax, const OpPlus Op
  5612  pkg regexp/syntax, const OpQuest Op
  5613  pkg regexp/syntax, const OpRepeat Op
  5614  pkg regexp/syntax, const OpStar Op
  5615  pkg regexp/syntax, const OpWordBoundary Op
  5616  pkg regexp/syntax, const POSIX Flags
  5617  pkg regexp/syntax, const Perl Flags
  5618  pkg regexp/syntax, const PerlX Flags
  5619  pkg regexp/syntax, const Simple Flags
  5620  pkg regexp/syntax, const UnicodeGroups Flags
  5621  pkg regexp/syntax, const WasDollar Flags
  5622  pkg regexp/syntax, func Compile(*Regexp) (*Prog, error)
  5623  pkg regexp/syntax, func EmptyOpContext(int32, int32) EmptyOp
  5624  pkg regexp/syntax, func IsWordChar(int32) bool
  5625  pkg regexp/syntax, func Parse(string, Flags) (*Regexp, error)
  5626  pkg regexp/syntax, method (*Error) Error() string
  5627  pkg regexp/syntax, method (*Inst) MatchEmptyWidth(int32, int32) bool
  5628  pkg regexp/syntax, method (*Inst) MatchRune(int32) bool
  5629  pkg regexp/syntax, method (*Inst) String() string
  5630  pkg regexp/syntax, method (*Prog) Prefix() (string, bool)
  5631  pkg regexp/syntax, method (*Prog) StartCond() EmptyOp
  5632  pkg regexp/syntax, method (*Prog) String() string
  5633  pkg regexp/syntax, method (*Regexp) CapNames() []string
  5634  pkg regexp/syntax, method (*Regexp) Equal(*Regexp) bool
  5635  pkg regexp/syntax, method (*Regexp) MaxCap() int
  5636  pkg regexp/syntax, method (*Regexp) Simplify() *Regexp
  5637  pkg regexp/syntax, method (*Regexp) String() string
  5638  pkg regexp/syntax, method (ErrorCode) String() string
  5639  pkg regexp/syntax, type EmptyOp uint8
  5640  pkg regexp/syntax, type Error struct
  5641  pkg regexp/syntax, type Error struct, Code ErrorCode
  5642  pkg regexp/syntax, type Error struct, Expr string
  5643  pkg regexp/syntax, type ErrorCode string
  5644  pkg regexp/syntax, type Flags uint16
  5645  pkg regexp/syntax, type Inst struct
  5646  pkg regexp/syntax, type Inst struct, Arg uint32
  5647  pkg regexp/syntax, type Inst struct, Op InstOp
  5648  pkg regexp/syntax, type Inst struct, Out uint32
  5649  pkg regexp/syntax, type Inst struct, Rune []int32
  5650  pkg regexp/syntax, type InstOp uint8
  5651  pkg regexp/syntax, type Op uint8
  5652  pkg regexp/syntax, type Prog struct
  5653  pkg regexp/syntax, type Prog struct, Inst []Inst
  5654  pkg regexp/syntax, type Prog struct, NumCap int
  5655  pkg regexp/syntax, type Prog struct, Start int
  5656  pkg regexp/syntax, type Regexp struct
  5657  pkg regexp/syntax, type Regexp struct, Cap int
  5658  pkg regexp/syntax, type Regexp struct, Flags Flags
  5659  pkg regexp/syntax, type Regexp struct, Max int
  5660  pkg regexp/syntax, type Regexp struct, Min int
  5661  pkg regexp/syntax, type Regexp struct, Name string
  5662  pkg regexp/syntax, type Regexp struct, Op Op
  5663  pkg regexp/syntax, type Regexp struct, Rune []int32
  5664  pkg regexp/syntax, type Regexp struct, Rune0 [2]int32
  5665  pkg regexp/syntax, type Regexp struct, Sub []*Regexp
  5666  pkg regexp/syntax, type Regexp struct, Sub0 [1]*Regexp
  5667  pkg runtime, const Compiler ideal-string
  5668  pkg runtime, const GOARCH string
  5669  pkg runtime, const GOOS string
  5670  pkg runtime, func Breakpoint()
  5671  pkg runtime, func CPUProfile() []uint8
  5672  pkg runtime, func Caller(int) (uintptr, string, int, bool)
  5673  pkg runtime, func Callers(int, []uintptr) int
  5674  pkg runtime, func FuncForPC(uintptr) *Func
  5675  pkg runtime, func GC()
  5676  pkg runtime, func GOMAXPROCS(int) int
  5677  pkg runtime, func GOROOT() string
  5678  pkg runtime, func Goexit()
  5679  pkg runtime, func GoroutineProfile([]StackRecord) (int, bool)
  5680  pkg runtime, func Gosched()
  5681  pkg runtime, func LockOSThread()
  5682  pkg runtime, func MemProfile([]MemProfileRecord, bool) (int, bool)
  5683  pkg runtime, func NumCPU() int
  5684  pkg runtime, func NumCgoCall() int64
  5685  pkg runtime, func NumGoroutine() int
  5686  pkg runtime, func ReadMemStats(*MemStats)
  5687  pkg runtime, func SetCPUProfileRate(int)
  5688  pkg runtime, func SetFinalizer(interface{}, interface{})
  5689  pkg runtime, func Stack([]uint8, bool) int
  5690  pkg runtime, func ThreadCreateProfile([]StackRecord) (int, bool)
  5691  pkg runtime, func UnlockOSThread()
  5692  pkg runtime, func Version() string
  5693  pkg runtime, method (*Func) Entry() uintptr
  5694  pkg runtime, method (*Func) FileLine(uintptr) (string, int)
  5695  pkg runtime, method (*Func) Name() string
  5696  pkg runtime, method (*MemProfileRecord) InUseBytes() int64
  5697  pkg runtime, method (*MemProfileRecord) InUseObjects() int64
  5698  pkg runtime, method (*MemProfileRecord) Stack() []uintptr
  5699  pkg runtime, method (*StackRecord) Stack() []uintptr
  5700  pkg runtime, method (*TypeAssertionError) Error() string
  5701  pkg runtime, method (*TypeAssertionError) RuntimeError()
  5702  pkg runtime, type Error interface { Error, RuntimeError }
  5703  pkg runtime, type Error interface, Error() string
  5704  pkg runtime, type Error interface, RuntimeError()
  5705  pkg runtime, type Func struct
  5706  pkg runtime, type MemProfileRecord struct
  5707  pkg runtime, type MemProfileRecord struct, AllocBytes int64
  5708  pkg runtime, type MemProfileRecord struct, AllocObjects int64
  5709  pkg runtime, type MemProfileRecord struct, FreeBytes int64
  5710  pkg runtime, type MemProfileRecord struct, FreeObjects int64
  5711  pkg runtime, type MemProfileRecord struct, Stack0 [32]uintptr
  5712  pkg runtime, type MemStats struct
  5713  pkg runtime, type MemStats struct, Alloc uint64
  5714  pkg runtime, type MemStats struct, BuckHashSys uint64
  5715  pkg runtime, type MemStats struct, BySize [61]struct
  5716  pkg runtime, type MemStats struct, DebugGC bool
  5717  pkg runtime, type MemStats struct, EnableGC bool
  5718  pkg runtime, type MemStats struct, Frees uint64
  5719  pkg runtime, type MemStats struct, HeapAlloc uint64
  5720  pkg runtime, type MemStats struct, HeapIdle uint64
  5721  pkg runtime, type MemStats struct, HeapInuse uint64
  5722  pkg runtime, type MemStats struct, HeapObjects uint64
  5723  pkg runtime, type MemStats struct, HeapReleased uint64
  5724  pkg runtime, type MemStats struct, HeapSys uint64
  5725  pkg runtime, type MemStats struct, LastGC uint64
  5726  pkg runtime, type MemStats struct, Lookups uint64
  5727  pkg runtime, type MemStats struct, MCacheInuse uint64
  5728  pkg runtime, type MemStats struct, MCacheSys uint64
  5729  pkg runtime, type MemStats struct, MSpanInuse uint64
  5730  pkg runtime, type MemStats struct, MSpanSys uint64
  5731  pkg runtime, type MemStats struct, Mallocs uint64
  5732  pkg runtime, type MemStats struct, NextGC uint64
  5733  pkg runtime, type MemStats struct, NumGC uint32
  5734  pkg runtime, type MemStats struct, PauseNs [256]uint64
  5735  pkg runtime, type MemStats struct, PauseTotalNs uint64
  5736  pkg runtime, type MemStats struct, StackInuse uint64
  5737  pkg runtime, type MemStats struct, StackSys uint64
  5738  pkg runtime, type MemStats struct, Sys uint64
  5739  pkg runtime, type MemStats struct, TotalAlloc uint64
  5740  pkg runtime, type StackRecord struct
  5741  pkg runtime, type StackRecord struct, Stack0 [32]uintptr
  5742  pkg runtime, type TypeAssertionError struct
  5743  pkg runtime, var MemProfileRate int
  5744  pkg runtime/debug, func PrintStack()
  5745  pkg runtime/debug, func Stack() []uint8
  5746  pkg runtime/pprof, func Lookup(string) *Profile
  5747  pkg runtime/pprof, func NewProfile(string) *Profile
  5748  pkg runtime/pprof, func Profiles() []*Profile
  5749  pkg runtime/pprof, func StartCPUProfile(io.Writer) error
  5750  pkg runtime/pprof, func StopCPUProfile()
  5751  pkg runtime/pprof, func WriteHeapProfile(io.Writer) error
  5752  pkg runtime/pprof, method (*Profile) Add(interface{}, int)
  5753  pkg runtime/pprof, method (*Profile) Count() int
  5754  pkg runtime/pprof, method (*Profile) Name() string
  5755  pkg runtime/pprof, method (*Profile) Remove(interface{})
  5756  pkg runtime/pprof, method (*Profile) WriteTo(io.Writer, int) error
  5757  pkg runtime/pprof, type Profile struct
  5758  pkg sort, func Float64s([]float64)
  5759  pkg sort, func Float64sAreSorted([]float64) bool
  5760  pkg sort, func Ints([]int)
  5761  pkg sort, func IntsAreSorted([]int) bool
  5762  pkg sort, func IsSorted(Interface) bool
  5763  pkg sort, func Search(int, func(int) bool) int
  5764  pkg sort, func SearchFloat64s([]float64, float64) int
  5765  pkg sort, func SearchInts([]int, int) int
  5766  pkg sort, func SearchStrings([]string, string) int
  5767  pkg sort, func Sort(Interface)
  5768  pkg sort, func Strings([]string)
  5769  pkg sort, func StringsAreSorted([]string) bool
  5770  pkg sort, method (Float64Slice) Len() int
  5771  pkg sort, method (Float64Slice) Less(int, int) bool
  5772  pkg sort, method (Float64Slice) Search(float64) int
  5773  pkg sort, method (Float64Slice) Sort()
  5774  pkg sort, method (Float64Slice) Swap(int, int)
  5775  pkg sort, method (IntSlice) Len() int
  5776  pkg sort, method (IntSlice) Less(int, int) bool
  5777  pkg sort, method (IntSlice) Search(int) int
  5778  pkg sort, method (IntSlice) Sort()
  5779  pkg sort, method (IntSlice) Swap(int, int)
  5780  pkg sort, method (StringSlice) Len() int
  5781  pkg sort, method (StringSlice) Less(int, int) bool
  5782  pkg sort, method (StringSlice) Search(string) int
  5783  pkg sort, method (StringSlice) Sort()
  5784  pkg sort, method (StringSlice) Swap(int, int)
  5785  pkg sort, type Float64Slice []float64
  5786  pkg sort, type IntSlice []int
  5787  pkg sort, type Interface interface { Len, Less, Swap }
  5788  pkg sort, type Interface interface, Len() int
  5789  pkg sort, type Interface interface, Less(int, int) bool
  5790  pkg sort, type Interface interface, Swap(int, int)
  5791  pkg sort, type StringSlice []string
  5792  pkg strconv, const IntSize ideal-int
  5793  pkg strconv, func AppendBool([]uint8, bool) []uint8
  5794  pkg strconv, func AppendFloat([]uint8, float64, uint8, int, int) []uint8
  5795  pkg strconv, func AppendInt([]uint8, int64, int) []uint8
  5796  pkg strconv, func AppendQuote([]uint8, string) []uint8
  5797  pkg strconv, func AppendQuoteRune([]uint8, int32) []uint8
  5798  pkg strconv, func AppendQuoteRuneToASCII([]uint8, int32) []uint8
  5799  pkg strconv, func AppendQuoteToASCII([]uint8, string) []uint8
  5800  pkg strconv, func AppendUint([]uint8, uint64, int) []uint8
  5801  pkg strconv, func Atoi(string) (int, error)
  5802  pkg strconv, func CanBackquote(string) bool
  5803  pkg strconv, func FormatBool(bool) string
  5804  pkg strconv, func FormatFloat(float64, uint8, int, int) string
  5805  pkg strconv, func FormatInt(int64, int) string
  5806  pkg strconv, func FormatUint(uint64, int) string
  5807  pkg strconv, func IsPrint(int32) bool
  5808  pkg strconv, func Itoa(int) string
  5809  pkg strconv, func ParseBool(string) (bool, error)
  5810  pkg strconv, func ParseFloat(string, int) (float64, error)
  5811  pkg strconv, func ParseInt(string, int, int) (int64, error)
  5812  pkg strconv, func ParseUint(string, int, int) (uint64, error)
  5813  pkg strconv, func Quote(string) string
  5814  pkg strconv, func QuoteRune(int32) string
  5815  pkg strconv, func QuoteRuneToASCII(int32) string
  5816  pkg strconv, func QuoteToASCII(string) string
  5817  pkg strconv, func Unquote(string) (string, error)
  5818  pkg strconv, func UnquoteChar(string, uint8) (int32, bool, string, error)
  5819  pkg strconv, method (*NumError) Error() string
  5820  pkg strconv, type NumError struct
  5821  pkg strconv, type NumError struct, Err error
  5822  pkg strconv, type NumError struct, Func string
  5823  pkg strconv, type NumError struct, Num string
  5824  pkg strconv, var ErrRange error
  5825  pkg strconv, var ErrSyntax error
  5826  pkg strings, func Contains(string, string) bool
  5827  pkg strings, func ContainsAny(string, string) bool
  5828  pkg strings, func ContainsRune(string, int32) bool
  5829  pkg strings, func Count(string, string) int
  5830  pkg strings, func EqualFold(string, string) bool
  5831  pkg strings, func Fields(string) []string
  5832  pkg strings, func FieldsFunc(string, func(int32) bool) []string
  5833  pkg strings, func HasPrefix(string, string) bool
  5834  pkg strings, func HasSuffix(string, string) bool
  5835  pkg strings, func Index(string, string) int
  5836  pkg strings, func IndexAny(string, string) int
  5837  pkg strings, func IndexFunc(string, func(int32) bool) int
  5838  pkg strings, func IndexRune(string, int32) int
  5839  pkg strings, func Join([]string, string) string
  5840  pkg strings, func LastIndex(string, string) int
  5841  pkg strings, func LastIndexAny(string, string) int
  5842  pkg strings, func LastIndexFunc(string, func(int32) bool) int
  5843  pkg strings, func Map(func(int32) int32, string) string
  5844  pkg strings, func NewReader(string) *Reader
  5845  pkg strings, func NewReplacer(...string) *Replacer
  5846  pkg strings, func Repeat(string, int) string
  5847  pkg strings, func Replace(string, string, string, int) string
  5848  pkg strings, func Split(string, string) []string
  5849  pkg strings, func SplitAfter(string, string) []string
  5850  pkg strings, func SplitAfterN(string, string, int) []string
  5851  pkg strings, func SplitN(string, string, int) []string
  5852  pkg strings, func Title(string) string
  5853  pkg strings, func ToLower(string) string
  5854  pkg strings, func ToLowerSpecial(unicode.SpecialCase, string) string
  5855  pkg strings, func ToTitle(string) string
  5856  pkg strings, func ToTitleSpecial(unicode.SpecialCase, string) string
  5857  pkg strings, func ToUpper(string) string
  5858  pkg strings, func ToUpperSpecial(unicode.SpecialCase, string) string
  5859  pkg strings, func Trim(string, string) string
  5860  pkg strings, func TrimFunc(string, func(int32) bool) string
  5861  pkg strings, func TrimLeft(string, string) string
  5862  pkg strings, func TrimLeftFunc(string, func(int32) bool) string
  5863  pkg strings, func TrimRight(string, string) string
  5864  pkg strings, func TrimRightFunc(string, func(int32) bool) string
  5865  pkg strings, func TrimSpace(string) string
  5866  pkg strings, method (*Reader) Len() int
  5867  pkg strings, method (*Reader) Read([]uint8) (int, error)
  5868  pkg strings, method (*Reader) ReadAt([]uint8, int64) (int, error)
  5869  pkg strings, method (*Reader) ReadByte() (uint8, error)
  5870  pkg strings, method (*Reader) ReadRune() (int32, int, error)
  5871  pkg strings, method (*Reader) Seek(int64, int) (int64, error)
  5872  pkg strings, method (*Reader) UnreadByte() error
  5873  pkg strings, method (*Reader) UnreadRune() error
  5874  pkg strings, method (*Replacer) Replace(string) string
  5875  pkg strings, method (*Replacer) WriteString(io.Writer, string) (int, error)
  5876  pkg strings, type Reader struct
  5877  pkg strings, type Replacer struct
  5878  pkg sync, func NewCond(Locker) *Cond
  5879  pkg sync, method (*Cond) Broadcast()
  5880  pkg sync, method (*Cond) Signal()
  5881  pkg sync, method (*Cond) Wait()
  5882  pkg sync, method (*Mutex) Lock()
  5883  pkg sync, method (*Mutex) Unlock()
  5884  pkg sync, method (*Once) Do(func())
  5885  pkg sync, method (*RWMutex) Lock()
  5886  pkg sync, method (*RWMutex) RLock()
  5887  pkg sync, method (*RWMutex) RLocker() Locker
  5888  pkg sync, method (*RWMutex) RUnlock()
  5889  pkg sync, method (*RWMutex) Unlock()
  5890  pkg sync, method (*WaitGroup) Add(int)
  5891  pkg sync, method (*WaitGroup) Done()
  5892  pkg sync, method (*WaitGroup) Wait()
  5893  pkg sync, type Cond struct
  5894  pkg sync, type Cond struct, L Locker
  5895  pkg sync, type Locker interface { Lock, Unlock }
  5896  pkg sync, type Locker interface, Lock()
  5897  pkg sync, type Locker interface, Unlock()
  5898  pkg sync, type Mutex struct
  5899  pkg sync, type Once struct
  5900  pkg sync, type RWMutex struct
  5901  pkg sync, type WaitGroup struct
  5902  pkg sync/atomic, func AddInt32(*int32, int32) int32
  5903  pkg sync/atomic, func AddInt64(*int64, int64) int64
  5904  pkg sync/atomic, func AddUint32(*uint32, uint32) uint32
  5905  pkg sync/atomic, func AddUint64(*uint64, uint64) uint64
  5906  pkg sync/atomic, func AddUintptr(*uintptr, uintptr) uintptr
  5907  pkg sync/atomic, func CompareAndSwapInt32(*int32, int32, int32) bool
  5908  pkg sync/atomic, func CompareAndSwapInt64(*int64, int64, int64) bool
  5909  pkg sync/atomic, func CompareAndSwapPointer(*unsafe.Pointer, unsafe.Pointer, unsafe.Pointer) bool
  5910  pkg sync/atomic, func CompareAndSwapUint32(*uint32, uint32, uint32) bool
  5911  pkg sync/atomic, func CompareAndSwapUint64(*uint64, uint64, uint64) bool
  5912  pkg sync/atomic, func CompareAndSwapUintptr(*uintptr, uintptr, uintptr) bool
  5913  pkg sync/atomic, func LoadInt32(*int32) int32
  5914  pkg sync/atomic, func LoadInt64(*int64) int64
  5915  pkg sync/atomic, func LoadPointer(*unsafe.Pointer) unsafe.Pointer
  5916  pkg sync/atomic, func LoadUint32(*uint32) uint32
  5917  pkg sync/atomic, func LoadUint64(*uint64) uint64
  5918  pkg sync/atomic, func LoadUintptr(*uintptr) uintptr
  5919  pkg sync/atomic, func StoreInt32(*int32, int32)
  5920  pkg sync/atomic, func StoreInt64(*int64, int64)
  5921  pkg sync/atomic, func StorePointer(*unsafe.Pointer, unsafe.Pointer)
  5922  pkg sync/atomic, func StoreUint32(*uint32, uint32)
  5923  pkg sync/atomic, func StoreUint64(*uint64, uint64)
  5924  pkg sync/atomic, func StoreUintptr(*uintptr, uintptr)
  5925  pkg syscall (darwin-386), const AF_APPLETALK ideal-int
  5926  pkg syscall (darwin-386), const AF_CCITT ideal-int
  5927  pkg syscall (darwin-386), const AF_CHAOS ideal-int
  5928  pkg syscall (darwin-386), const AF_CNT ideal-int
  5929  pkg syscall (darwin-386), const AF_COIP ideal-int
  5930  pkg syscall (darwin-386), const AF_DATAKIT ideal-int
  5931  pkg syscall (darwin-386), const AF_DECnet ideal-int
  5932  pkg syscall (darwin-386), const AF_DLI ideal-int
  5933  pkg syscall (darwin-386), const AF_E164 ideal-int
  5934  pkg syscall (darwin-386), const AF_ECMA ideal-int
  5935  pkg syscall (darwin-386), const AF_HYLINK ideal-int
  5936  pkg syscall (darwin-386), const AF_IEEE80211 ideal-int
  5937  pkg syscall (darwin-386), const AF_IMPLINK ideal-int
  5938  pkg syscall (darwin-386), const AF_IPX ideal-int
  5939  pkg syscall (darwin-386), const AF_ISDN ideal-int
  5940  pkg syscall (darwin-386), const AF_ISO ideal-int
  5941  pkg syscall (darwin-386), const AF_LAT ideal-int
  5942  pkg syscall (darwin-386), const AF_LINK ideal-int
  5943  pkg syscall (darwin-386), const AF_LOCAL ideal-int
  5944  pkg syscall (darwin-386), const AF_MAX ideal-int
  5945  pkg syscall (darwin-386), const AF_NATM ideal-int
  5946  pkg syscall (darwin-386), const AF_NDRV ideal-int
  5947  pkg syscall (darwin-386), const AF_NETBIOS ideal-int
  5948  pkg syscall (darwin-386), const AF_NS ideal-int
  5949  pkg syscall (darwin-386), const AF_OSI ideal-int
  5950  pkg syscall (darwin-386), const AF_PPP ideal-int
  5951  pkg syscall (darwin-386), const AF_PUP ideal-int
  5952  pkg syscall (darwin-386), const AF_RESERVED_36 ideal-int
  5953  pkg syscall (darwin-386), const AF_ROUTE ideal-int
  5954  pkg syscall (darwin-386), const AF_SIP ideal-int
  5955  pkg syscall (darwin-386), const AF_SNA ideal-int
  5956  pkg syscall (darwin-386), const AF_SYSTEM ideal-int
  5957  pkg syscall (darwin-386), const BIOCFLUSH ideal-int
  5958  pkg syscall (darwin-386), const BIOCGBLEN ideal-int
  5959  pkg syscall (darwin-386), const BIOCGDLT ideal-int
  5960  pkg syscall (darwin-386), const BIOCGDLTLIST ideal-int
  5961  pkg syscall (darwin-386), const BIOCGETIF ideal-int
  5962  pkg syscall (darwin-386), const BIOCGHDRCMPLT ideal-int
  5963  pkg syscall (darwin-386), const BIOCGRSIG ideal-int
  5964  pkg syscall (darwin-386), const BIOCGRTIMEOUT ideal-int
  5965  pkg syscall (darwin-386), const BIOCGSEESENT ideal-int
  5966  pkg syscall (darwin-386), const BIOCGSTATS ideal-int
  5967  pkg syscall (darwin-386), const BIOCIMMEDIATE ideal-int
  5968  pkg syscall (darwin-386), const BIOCPROMISC ideal-int
  5969  pkg syscall (darwin-386), const BIOCSBLEN ideal-int
  5970  pkg syscall (darwin-386), const BIOCSDLT ideal-int
  5971  pkg syscall (darwin-386), const BIOCSETF ideal-int
  5972  pkg syscall (darwin-386), const BIOCSETIF ideal-int
  5973  pkg syscall (darwin-386), const BIOCSHDRCMPLT ideal-int
  5974  pkg syscall (darwin-386), const BIOCSRSIG ideal-int
  5975  pkg syscall (darwin-386), const BIOCSRTIMEOUT ideal-int
  5976  pkg syscall (darwin-386), const BIOCSSEESENT ideal-int
  5977  pkg syscall (darwin-386), const BIOCVERSION ideal-int
  5978  pkg syscall (darwin-386), const BPF_A ideal-int
  5979  pkg syscall (darwin-386), const BPF_ABS ideal-int
  5980  pkg syscall (darwin-386), const BPF_ADD ideal-int
  5981  pkg syscall (darwin-386), const BPF_ALIGNMENT ideal-int
  5982  pkg syscall (darwin-386), const BPF_ALU ideal-int
  5983  pkg syscall (darwin-386), const BPF_AND ideal-int
  5984  pkg syscall (darwin-386), const BPF_B ideal-int
  5985  pkg syscall (darwin-386), const BPF_DIV ideal-int
  5986  pkg syscall (darwin-386), const BPF_H ideal-int
  5987  pkg syscall (darwin-386), const BPF_IMM ideal-int
  5988  pkg syscall (darwin-386), const BPF_IND ideal-int
  5989  pkg syscall (darwin-386), const BPF_JA ideal-int
  5990  pkg syscall (darwin-386), const BPF_JEQ ideal-int
  5991  pkg syscall (darwin-386), const BPF_JGE ideal-int
  5992  pkg syscall (darwin-386), const BPF_JGT ideal-int
  5993  pkg syscall (darwin-386), const BPF_JMP ideal-int
  5994  pkg syscall (darwin-386), const BPF_JSET ideal-int
  5995  pkg syscall (darwin-386), const BPF_K ideal-int
  5996  pkg syscall (darwin-386), const BPF_LD ideal-int
  5997  pkg syscall (darwin-386), const BPF_LDX ideal-int
  5998  pkg syscall (darwin-386), const BPF_LEN ideal-int
  5999  pkg syscall (darwin-386), const BPF_LSH ideal-int
  6000  pkg syscall (darwin-386), const BPF_MAJOR_VERSION ideal-int
  6001  pkg syscall (darwin-386), const BPF_MAXBUFSIZE ideal-int
  6002  pkg syscall (darwin-386), const BPF_MAXINSNS ideal-int
  6003  pkg syscall (darwin-386), const BPF_MEM ideal-int
  6004  pkg syscall (darwin-386), const BPF_MEMWORDS ideal-int
  6005  pkg syscall (darwin-386), const BPF_MINBUFSIZE ideal-int
  6006  pkg syscall (darwin-386), const BPF_MINOR_VERSION ideal-int
  6007  pkg syscall (darwin-386), const BPF_MISC ideal-int
  6008  pkg syscall (darwin-386), const BPF_MSH ideal-int
  6009  pkg syscall (darwin-386), const BPF_MUL ideal-int
  6010  pkg syscall (darwin-386), const BPF_NEG ideal-int
  6011  pkg syscall (darwin-386), const BPF_OR ideal-int
  6012  pkg syscall (darwin-386), const BPF_RELEASE ideal-int
  6013  pkg syscall (darwin-386), const BPF_RET ideal-int
  6014  pkg syscall (darwin-386), const BPF_RSH ideal-int
  6015  pkg syscall (darwin-386), const BPF_ST ideal-int
  6016  pkg syscall (darwin-386), const BPF_STX ideal-int
  6017  pkg syscall (darwin-386), const BPF_SUB ideal-int
  6018  pkg syscall (darwin-386), const BPF_TAX ideal-int
  6019  pkg syscall (darwin-386), const BPF_TXA ideal-int
  6020  pkg syscall (darwin-386), const BPF_W ideal-int
  6021  pkg syscall (darwin-386), const BPF_X ideal-int
  6022  pkg syscall (darwin-386), const CTL_MAXNAME ideal-int
  6023  pkg syscall (darwin-386), const CTL_NET ideal-int
  6024  pkg syscall (darwin-386), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
  6025  pkg syscall (darwin-386), const DLT_ARCNET ideal-int
  6026  pkg syscall (darwin-386), const DLT_ATM_CLIP ideal-int
  6027  pkg syscall (darwin-386), const DLT_ATM_RFC1483 ideal-int
  6028  pkg syscall (darwin-386), const DLT_AX25 ideal-int
  6029  pkg syscall (darwin-386), const DLT_CHAOS ideal-int
  6030  pkg syscall (darwin-386), const DLT_CHDLC ideal-int
  6031  pkg syscall (darwin-386), const DLT_C_HDLC ideal-int
  6032  pkg syscall (darwin-386), const DLT_EN10MB ideal-int
  6033  pkg syscall (darwin-386), const DLT_EN3MB ideal-int
  6034  pkg syscall (darwin-386), const DLT_FDDI ideal-int
  6035  pkg syscall (darwin-386), const DLT_IEEE802 ideal-int
  6036  pkg syscall (darwin-386), const DLT_IEEE802_11 ideal-int
  6037  pkg syscall (darwin-386), const DLT_IEEE802_11_RADIO ideal-int
  6038  pkg syscall (darwin-386), const DLT_IEEE802_11_RADIO_AVS ideal-int
  6039  pkg syscall (darwin-386), const DLT_LINUX_SLL ideal-int
  6040  pkg syscall (darwin-386), const DLT_LOOP ideal-int
  6041  pkg syscall (darwin-386), const DLT_NULL ideal-int
  6042  pkg syscall (darwin-386), const DLT_PFLOG ideal-int
  6043  pkg syscall (darwin-386), const DLT_PFSYNC ideal-int
  6044  pkg syscall (darwin-386), const DLT_PPP ideal-int
  6045  pkg syscall (darwin-386), const DLT_PPP_BSDOS ideal-int
  6046  pkg syscall (darwin-386), const DLT_PPP_SERIAL ideal-int
  6047  pkg syscall (darwin-386), const DLT_PRONET ideal-int
  6048  pkg syscall (darwin-386), const DLT_RAW ideal-int
  6049  pkg syscall (darwin-386), const DLT_SLIP ideal-int
  6050  pkg syscall (darwin-386), const DLT_SLIP_BSDOS ideal-int
  6051  pkg syscall (darwin-386), const DT_BLK ideal-int
  6052  pkg syscall (darwin-386), const DT_CHR ideal-int
  6053  pkg syscall (darwin-386), const DT_DIR ideal-int
  6054  pkg syscall (darwin-386), const DT_FIFO ideal-int
  6055  pkg syscall (darwin-386), const DT_LNK ideal-int
  6056  pkg syscall (darwin-386), const DT_REG ideal-int
  6057  pkg syscall (darwin-386), const DT_SOCK ideal-int
  6058  pkg syscall (darwin-386), const DT_UNKNOWN ideal-int
  6059  pkg syscall (darwin-386), const DT_WHT ideal-int
  6060  pkg syscall (darwin-386), const EAUTH Errno
  6061  pkg syscall (darwin-386), const EBADARCH Errno
  6062  pkg syscall (darwin-386), const EBADEXEC Errno
  6063  pkg syscall (darwin-386), const EBADMACHO Errno
  6064  pkg syscall (darwin-386), const EBADMSG Errno
  6065  pkg syscall (darwin-386), const EBADRPC Errno
  6066  pkg syscall (darwin-386), const ECHO ideal-int
  6067  pkg syscall (darwin-386), const ECHOCTL ideal-int
  6068  pkg syscall (darwin-386), const ECHOE ideal-int
  6069  pkg syscall (darwin-386), const ECHOK ideal-int
  6070  pkg syscall (darwin-386), const ECHOKE ideal-int
  6071  pkg syscall (darwin-386), const ECHONL ideal-int
  6072  pkg syscall (darwin-386), const ECHOPRT ideal-int
  6073  pkg syscall (darwin-386), const EDEVERR Errno
  6074  pkg syscall (darwin-386), const EFTYPE Errno
  6075  pkg syscall (darwin-386), const ELAST Errno
  6076  pkg syscall (darwin-386), const EMULTIHOP Errno
  6077  pkg syscall (darwin-386), const ENEEDAUTH Errno
  6078  pkg syscall (darwin-386), const ENOATTR Errno
  6079  pkg syscall (darwin-386), const ENODATA Errno
  6080  pkg syscall (darwin-386), const ENOLINK Errno
  6081  pkg syscall (darwin-386), const ENOPOLICY Errno
  6082  pkg syscall (darwin-386), const ENOSR Errno
  6083  pkg syscall (darwin-386), const ENOSTR Errno
  6084  pkg syscall (darwin-386), const ENOTRECOVERABLE Errno
  6085  pkg syscall (darwin-386), const EOWNERDEAD Errno
  6086  pkg syscall (darwin-386), const EPROCLIM Errno
  6087  pkg syscall (darwin-386), const EPROCUNAVAIL Errno
  6088  pkg syscall (darwin-386), const EPROGMISMATCH Errno
  6089  pkg syscall (darwin-386), const EPROGUNAVAIL Errno
  6090  pkg syscall (darwin-386), const EPROTO Errno
  6091  pkg syscall (darwin-386), const EPWROFF Errno
  6092  pkg syscall (darwin-386), const ERPCMISMATCH Errno
  6093  pkg syscall (darwin-386), const ESHLIBVERS Errno
  6094  pkg syscall (darwin-386), const ETIME Errno
  6095  pkg syscall (darwin-386), const EVFILT_AIO ideal-int
  6096  pkg syscall (darwin-386), const EVFILT_FS ideal-int
  6097  pkg syscall (darwin-386), const EVFILT_MACHPORT ideal-int
  6098  pkg syscall (darwin-386), const EVFILT_PROC ideal-int
  6099  pkg syscall (darwin-386), const EVFILT_READ ideal-int
  6100  pkg syscall (darwin-386), const EVFILT_SIGNAL ideal-int
  6101  pkg syscall (darwin-386), const EVFILT_SYSCOUNT ideal-int
  6102  pkg syscall (darwin-386), const EVFILT_THREADMARKER ideal-int
  6103  pkg syscall (darwin-386), const EVFILT_TIMER ideal-int
  6104  pkg syscall (darwin-386), const EVFILT_USER ideal-int
  6105  pkg syscall (darwin-386), const EVFILT_VM ideal-int
  6106  pkg syscall (darwin-386), const EVFILT_VNODE ideal-int
  6107  pkg syscall (darwin-386), const EVFILT_WRITE ideal-int
  6108  pkg syscall (darwin-386), const EV_ADD ideal-int
  6109  pkg syscall (darwin-386), const EV_CLEAR ideal-int
  6110  pkg syscall (darwin-386), const EV_DELETE ideal-int
  6111  pkg syscall (darwin-386), const EV_DISABLE ideal-int
  6112  pkg syscall (darwin-386), const EV_DISPATCH ideal-int
  6113  pkg syscall (darwin-386), const EV_ENABLE ideal-int
  6114  pkg syscall (darwin-386), const EV_EOF ideal-int
  6115  pkg syscall (darwin-386), const EV_ERROR ideal-int
  6116  pkg syscall (darwin-386), const EV_FLAG0 ideal-int
  6117  pkg syscall (darwin-386), const EV_FLAG1 ideal-int
  6118  pkg syscall (darwin-386), const EV_ONESHOT ideal-int
  6119  pkg syscall (darwin-386), const EV_OOBAND ideal-int
  6120  pkg syscall (darwin-386), const EV_POLL ideal-int
  6121  pkg syscall (darwin-386), const EV_RECEIPT ideal-int
  6122  pkg syscall (darwin-386), const EV_SYSFLAGS ideal-int
  6123  pkg syscall (darwin-386), const EXTA ideal-int
  6124  pkg syscall (darwin-386), const EXTB ideal-int
  6125  pkg syscall (darwin-386), const EXTPROC ideal-int
  6126  pkg syscall (darwin-386), const FD_CLOEXEC ideal-int
  6127  pkg syscall (darwin-386), const FD_SETSIZE ideal-int
  6128  pkg syscall (darwin-386), const F_ADDFILESIGS ideal-int
  6129  pkg syscall (darwin-386), const F_ADDSIGS ideal-int
  6130  pkg syscall (darwin-386), const F_ALLOCATEALL ideal-int
  6131  pkg syscall (darwin-386), const F_ALLOCATECONTIG ideal-int
  6132  pkg syscall (darwin-386), const F_CHKCLEAN ideal-int
  6133  pkg syscall (darwin-386), const F_DUPFD ideal-int
  6134  pkg syscall (darwin-386), const F_DUPFD_CLOEXEC ideal-int
  6135  pkg syscall (darwin-386), const F_FLUSH_DATA ideal-int
  6136  pkg syscall (darwin-386), const F_FREEZE_FS ideal-int
  6137  pkg syscall (darwin-386), const F_FULLFSYNC ideal-int
  6138  pkg syscall (darwin-386), const F_GETFD ideal-int
  6139  pkg syscall (darwin-386), const F_GETFL ideal-int
  6140  pkg syscall (darwin-386), const F_GETLK ideal-int
  6141  pkg syscall (darwin-386), const F_GETLKPID ideal-int
  6142  pkg syscall (darwin-386), const F_GETNOSIGPIPE ideal-int
  6143  pkg syscall (darwin-386), const F_GETOWN ideal-int
  6144  pkg syscall (darwin-386), const F_GETPATH ideal-int
  6145  pkg syscall (darwin-386), const F_GETPATH_MTMINFO ideal-int
  6146  pkg syscall (darwin-386), const F_GETPROTECTIONCLASS ideal-int
  6147  pkg syscall (darwin-386), const F_GLOBAL_NOCACHE ideal-int
  6148  pkg syscall (darwin-386), const F_LOG2PHYS ideal-int
  6149  pkg syscall (darwin-386), const F_LOG2PHYS_EXT ideal-int
  6150  pkg syscall (darwin-386), const F_MARKDEPENDENCY ideal-int
  6151  pkg syscall (darwin-386), const F_NOCACHE ideal-int
  6152  pkg syscall (darwin-386), const F_NODIRECT ideal-int
  6153  pkg syscall (darwin-386), const F_OK ideal-int
  6154  pkg syscall (darwin-386), const F_PATHPKG_CHECK ideal-int
  6155  pkg syscall (darwin-386), const F_PEOFPOSMODE ideal-int
  6156  pkg syscall (darwin-386), const F_PREALLOCATE ideal-int
  6157  pkg syscall (darwin-386), const F_RDADVISE ideal-int
  6158  pkg syscall (darwin-386), const F_RDAHEAD ideal-int
  6159  pkg syscall (darwin-386), const F_RDLCK ideal-int
  6160  pkg syscall (darwin-386), const F_READBOOTSTRAP ideal-int
  6161  pkg syscall (darwin-386), const F_SETBACKINGSTORE ideal-int
  6162  pkg syscall (darwin-386), const F_SETFD ideal-int
  6163  pkg syscall (darwin-386), const F_SETFL ideal-int
  6164  pkg syscall (darwin-386), const F_SETLK ideal-int
  6165  pkg syscall (darwin-386), const F_SETLKW ideal-int
  6166  pkg syscall (darwin-386), const F_SETNOSIGPIPE ideal-int
  6167  pkg syscall (darwin-386), const F_SETOWN ideal-int
  6168  pkg syscall (darwin-386), const F_SETPROTECTIONCLASS ideal-int
  6169  pkg syscall (darwin-386), const F_SETSIZE ideal-int
  6170  pkg syscall (darwin-386), const F_THAW_FS ideal-int
  6171  pkg syscall (darwin-386), const F_UNLCK ideal-int
  6172  pkg syscall (darwin-386), const F_VOLPOSMODE ideal-int
  6173  pkg syscall (darwin-386), const F_WRITEBOOTSTRAP ideal-int
  6174  pkg syscall (darwin-386), const F_WRLCK ideal-int
  6175  pkg syscall (darwin-386), const IFF_ALLMULTI ideal-int
  6176  pkg syscall (darwin-386), const IFF_ALTPHYS ideal-int
  6177  pkg syscall (darwin-386), const IFF_DEBUG ideal-int
  6178  pkg syscall (darwin-386), const IFF_LINK0 ideal-int
  6179  pkg syscall (darwin-386), const IFF_LINK1 ideal-int
  6180  pkg syscall (darwin-386), const IFF_LINK2 ideal-int
  6181  pkg syscall (darwin-386), const IFF_NOARP ideal-int
  6182  pkg syscall (darwin-386), const IFF_NOTRAILERS ideal-int
  6183  pkg syscall (darwin-386), const IFF_OACTIVE ideal-int
  6184  pkg syscall (darwin-386), const IFF_POINTOPOINT ideal-int
  6185  pkg syscall (darwin-386), const IFF_PROMISC ideal-int
  6186  pkg syscall (darwin-386), const IFF_RUNNING ideal-int
  6187  pkg syscall (darwin-386), const IFF_SIMPLEX ideal-int
  6188  pkg syscall (darwin-386), const IFNAMSIZ ideal-int
  6189  pkg syscall (darwin-386), const IFT_1822 ideal-int
  6190  pkg syscall (darwin-386), const IFT_AAL5 ideal-int
  6191  pkg syscall (darwin-386), const IFT_ARCNET ideal-int
  6192  pkg syscall (darwin-386), const IFT_ARCNETPLUS ideal-int
  6193  pkg syscall (darwin-386), const IFT_ATM ideal-int
  6194  pkg syscall (darwin-386), const IFT_BRIDGE ideal-int
  6195  pkg syscall (darwin-386), const IFT_CARP ideal-int
  6196  pkg syscall (darwin-386), const IFT_CELLULAR ideal-int
  6197  pkg syscall (darwin-386), const IFT_CEPT ideal-int
  6198  pkg syscall (darwin-386), const IFT_DS3 ideal-int
  6199  pkg syscall (darwin-386), const IFT_ENC ideal-int
  6200  pkg syscall (darwin-386), const IFT_EON ideal-int
  6201  pkg syscall (darwin-386), const IFT_ETHER ideal-int
  6202  pkg syscall (darwin-386), const IFT_FAITH ideal-int
  6203  pkg syscall (darwin-386), const IFT_FDDI ideal-int
  6204  pkg syscall (darwin-386), const IFT_FRELAY ideal-int
  6205  pkg syscall (darwin-386), const IFT_FRELAYDCE ideal-int
  6206  pkg syscall (darwin-386), const IFT_GIF ideal-int
  6207  pkg syscall (darwin-386), const IFT_HDH1822 ideal-int
  6208  pkg syscall (darwin-386), const IFT_HIPPI ideal-int
  6209  pkg syscall (darwin-386), const IFT_HSSI ideal-int
  6210  pkg syscall (darwin-386), const IFT_HY ideal-int
  6211  pkg syscall (darwin-386), const IFT_IEEE1394 ideal-int
  6212  pkg syscall (darwin-386), const IFT_IEEE8023ADLAG ideal-int
  6213  pkg syscall (darwin-386), const IFT_ISDNBASIC ideal-int
  6214  pkg syscall (darwin-386), const IFT_ISDNPRIMARY ideal-int
  6215  pkg syscall (darwin-386), const IFT_ISO88022LLC ideal-int
  6216  pkg syscall (darwin-386), const IFT_ISO88023 ideal-int
  6217  pkg syscall (darwin-386), const IFT_ISO88024 ideal-int
  6218  pkg syscall (darwin-386), const IFT_ISO88025 ideal-int
  6219  pkg syscall (darwin-386), const IFT_ISO88026 ideal-int
  6220  pkg syscall (darwin-386), const IFT_L2VLAN ideal-int
  6221  pkg syscall (darwin-386), const IFT_LAPB ideal-int
  6222  pkg syscall (darwin-386), const IFT_LOCALTALK ideal-int
  6223  pkg syscall (darwin-386), const IFT_LOOP ideal-int
  6224  pkg syscall (darwin-386), const IFT_MIOX25 ideal-int
  6225  pkg syscall (darwin-386), const IFT_MODEM ideal-int
  6226  pkg syscall (darwin-386), const IFT_NSIP ideal-int
  6227  pkg syscall (darwin-386), const IFT_OTHER ideal-int
  6228  pkg syscall (darwin-386), const IFT_P10 ideal-int
  6229  pkg syscall (darwin-386), const IFT_P80 ideal-int
  6230  pkg syscall (darwin-386), const IFT_PARA ideal-int
  6231  pkg syscall (darwin-386), const IFT_PDP ideal-int
  6232  pkg syscall (darwin-386), const IFT_PFLOG ideal-int
  6233  pkg syscall (darwin-386), const IFT_PFSYNC ideal-int
  6234  pkg syscall (darwin-386), const IFT_PPP ideal-int
  6235  pkg syscall (darwin-386), const IFT_PROPMUX ideal-int
  6236  pkg syscall (darwin-386), const IFT_PROPVIRTUAL ideal-int
  6237  pkg syscall (darwin-386), const IFT_PTPSERIAL ideal-int
  6238  pkg syscall (darwin-386), const IFT_RS232 ideal-int
  6239  pkg syscall (darwin-386), const IFT_SDLC ideal-int
  6240  pkg syscall (darwin-386), const IFT_SIP ideal-int
  6241  pkg syscall (darwin-386), const IFT_SLIP ideal-int
  6242  pkg syscall (darwin-386), const IFT_SMDSDXI ideal-int
  6243  pkg syscall (darwin-386), const IFT_SMDSICIP ideal-int
  6244  pkg syscall (darwin-386), const IFT_SONET ideal-int
  6245  pkg syscall (darwin-386), const IFT_SONETPATH ideal-int
  6246  pkg syscall (darwin-386), const IFT_SONETVT ideal-int
  6247  pkg syscall (darwin-386), const IFT_STARLAN ideal-int
  6248  pkg syscall (darwin-386), const IFT_STF ideal-int
  6249  pkg syscall (darwin-386), const IFT_T1 ideal-int
  6250  pkg syscall (darwin-386), const IFT_ULTRA ideal-int
  6251  pkg syscall (darwin-386), const IFT_V35 ideal-int
  6252  pkg syscall (darwin-386), const IFT_X25 ideal-int
  6253  pkg syscall (darwin-386), const IFT_X25DDN ideal-int
  6254  pkg syscall (darwin-386), const IFT_X25PLE ideal-int
  6255  pkg syscall (darwin-386), const IFT_XETHER ideal-int
  6256  pkg syscall (darwin-386), const IN_CLASSA_HOST ideal-int
  6257  pkg syscall (darwin-386), const IN_CLASSA_MAX ideal-int
  6258  pkg syscall (darwin-386), const IN_CLASSA_NET ideal-int
  6259  pkg syscall (darwin-386), const IN_CLASSA_NSHIFT ideal-int
  6260  pkg syscall (darwin-386), const IN_CLASSB_HOST ideal-int
  6261  pkg syscall (darwin-386), const IN_CLASSB_MAX ideal-int
  6262  pkg syscall (darwin-386), const IN_CLASSB_NET ideal-int
  6263  pkg syscall (darwin-386), const IN_CLASSB_NSHIFT ideal-int
  6264  pkg syscall (darwin-386), const IN_CLASSC_HOST ideal-int
  6265  pkg syscall (darwin-386), const IN_CLASSC_NET ideal-int
  6266  pkg syscall (darwin-386), const IN_CLASSC_NSHIFT ideal-int
  6267  pkg syscall (darwin-386), const IN_CLASSD_HOST ideal-int
  6268  pkg syscall (darwin-386), const IN_CLASSD_NET ideal-int
  6269  pkg syscall (darwin-386), const IN_CLASSD_NSHIFT ideal-int
  6270  pkg syscall (darwin-386), const IN_LINKLOCALNETNUM ideal-int
  6271  pkg syscall (darwin-386), const IN_LOOPBACKNET ideal-int
  6272  pkg syscall (darwin-386), const IPPROTO_3PC ideal-int
  6273  pkg syscall (darwin-386), const IPPROTO_ADFS ideal-int
  6274  pkg syscall (darwin-386), const IPPROTO_AH ideal-int
  6275  pkg syscall (darwin-386), const IPPROTO_AHIP ideal-int
  6276  pkg syscall (darwin-386), const IPPROTO_APES ideal-int
  6277  pkg syscall (darwin-386), const IPPROTO_ARGUS ideal-int
  6278  pkg syscall (darwin-386), const IPPROTO_AX25 ideal-int
  6279  pkg syscall (darwin-386), const IPPROTO_BHA ideal-int
  6280  pkg syscall (darwin-386), const IPPROTO_BLT ideal-int
  6281  pkg syscall (darwin-386), const IPPROTO_BRSATMON ideal-int
  6282  pkg syscall (darwin-386), const IPPROTO_CFTP ideal-int
  6283  pkg syscall (darwin-386), const IPPROTO_CHAOS ideal-int
  6284  pkg syscall (darwin-386), const IPPROTO_CMTP ideal-int
  6285  pkg syscall (darwin-386), const IPPROTO_CPHB ideal-int
  6286  pkg syscall (darwin-386), const IPPROTO_CPNX ideal-int
  6287  pkg syscall (darwin-386), const IPPROTO_DDP ideal-int
  6288  pkg syscall (darwin-386), const IPPROTO_DGP ideal-int
  6289  pkg syscall (darwin-386), const IPPROTO_DIVERT ideal-int
  6290  pkg syscall (darwin-386), const IPPROTO_DONE ideal-int
  6291  pkg syscall (darwin-386), const IPPROTO_DSTOPTS ideal-int
  6292  pkg syscall (darwin-386), const IPPROTO_EGP ideal-int
  6293  pkg syscall (darwin-386), const IPPROTO_EMCON ideal-int
  6294  pkg syscall (darwin-386), const IPPROTO_ENCAP ideal-int
  6295  pkg syscall (darwin-386), const IPPROTO_EON ideal-int
  6296  pkg syscall (darwin-386), const IPPROTO_ESP ideal-int
  6297  pkg syscall (darwin-386), const IPPROTO_ETHERIP ideal-int
  6298  pkg syscall (darwin-386), const IPPROTO_FRAGMENT ideal-int
  6299  pkg syscall (darwin-386), const IPPROTO_GGP ideal-int
  6300  pkg syscall (darwin-386), const IPPROTO_GMTP ideal-int
  6301  pkg syscall (darwin-386), const IPPROTO_GRE ideal-int
  6302  pkg syscall (darwin-386), const IPPROTO_HELLO ideal-int
  6303  pkg syscall (darwin-386), const IPPROTO_HMP ideal-int
  6304  pkg syscall (darwin-386), const IPPROTO_HOPOPTS ideal-int
  6305  pkg syscall (darwin-386), const IPPROTO_ICMP ideal-int
  6306  pkg syscall (darwin-386), const IPPROTO_ICMPV6 ideal-int
  6307  pkg syscall (darwin-386), const IPPROTO_IDP ideal-int
  6308  pkg syscall (darwin-386), const IPPROTO_IDPR ideal-int
  6309  pkg syscall (darwin-386), const IPPROTO_IDRP ideal-int
  6310  pkg syscall (darwin-386), const IPPROTO_IGMP ideal-int
  6311  pkg syscall (darwin-386), const IPPROTO_IGP ideal-int
  6312  pkg syscall (darwin-386), const IPPROTO_IGRP ideal-int
  6313  pkg syscall (darwin-386), const IPPROTO_IL ideal-int
  6314  pkg syscall (darwin-386), const IPPROTO_INLSP ideal-int
  6315  pkg syscall (darwin-386), const IPPROTO_INP ideal-int
  6316  pkg syscall (darwin-386), const IPPROTO_IPCOMP ideal-int
  6317  pkg syscall (darwin-386), const IPPROTO_IPCV ideal-int
  6318  pkg syscall (darwin-386), const IPPROTO_IPEIP ideal-int
  6319  pkg syscall (darwin-386), const IPPROTO_IPIP ideal-int
  6320  pkg syscall (darwin-386), const IPPROTO_IPPC ideal-int
  6321  pkg syscall (darwin-386), const IPPROTO_IPV4 ideal-int
  6322  pkg syscall (darwin-386), const IPPROTO_IRTP ideal-int
  6323  pkg syscall (darwin-386), const IPPROTO_KRYPTOLAN ideal-int
  6324  pkg syscall (darwin-386), const IPPROTO_LARP ideal-int
  6325  pkg syscall (darwin-386), const IPPROTO_LEAF1 ideal-int
  6326  pkg syscall (darwin-386), const IPPROTO_LEAF2 ideal-int
  6327  pkg syscall (darwin-386), const IPPROTO_MAX ideal-int
  6328  pkg syscall (darwin-386), const IPPROTO_MAXID ideal-int
  6329  pkg syscall (darwin-386), const IPPROTO_MEAS ideal-int
  6330  pkg syscall (darwin-386), const IPPROTO_MHRP ideal-int
  6331  pkg syscall (darwin-386), const IPPROTO_MICP ideal-int
  6332  pkg syscall (darwin-386), const IPPROTO_MTP ideal-int
  6333  pkg syscall (darwin-386), const IPPROTO_MUX ideal-int
  6334  pkg syscall (darwin-386), const IPPROTO_ND ideal-int
  6335  pkg syscall (darwin-386), const IPPROTO_NHRP ideal-int
  6336  pkg syscall (darwin-386), const IPPROTO_NONE ideal-int
  6337  pkg syscall (darwin-386), const IPPROTO_NSP ideal-int
  6338  pkg syscall (darwin-386), const IPPROTO_NVPII ideal-int
  6339  pkg syscall (darwin-386), const IPPROTO_OSPFIGP ideal-int
  6340  pkg syscall (darwin-386), const IPPROTO_PGM ideal-int
  6341  pkg syscall (darwin-386), const IPPROTO_PIGP ideal-int
  6342  pkg syscall (darwin-386), const IPPROTO_PIM ideal-int
  6343  pkg syscall (darwin-386), const IPPROTO_PRM ideal-int
  6344  pkg syscall (darwin-386), const IPPROTO_PUP ideal-int
  6345  pkg syscall (darwin-386), const IPPROTO_PVP ideal-int
  6346  pkg syscall (darwin-386), const IPPROTO_RAW ideal-int
  6347  pkg syscall (darwin-386), const IPPROTO_RCCMON ideal-int
  6348  pkg syscall (darwin-386), const IPPROTO_RDP ideal-int
  6349  pkg syscall (darwin-386), const IPPROTO_ROUTING ideal-int
  6350  pkg syscall (darwin-386), const IPPROTO_RSVP ideal-int
  6351  pkg syscall (darwin-386), const IPPROTO_RVD ideal-int
  6352  pkg syscall (darwin-386), const IPPROTO_SATEXPAK ideal-int
  6353  pkg syscall (darwin-386), const IPPROTO_SATMON ideal-int
  6354  pkg syscall (darwin-386), const IPPROTO_SCCSP ideal-int
  6355  pkg syscall (darwin-386), const IPPROTO_SCTP ideal-int
  6356  pkg syscall (darwin-386), const IPPROTO_SDRP ideal-int
  6357  pkg syscall (darwin-386), const IPPROTO_SEP ideal-int
  6358  pkg syscall (darwin-386), const IPPROTO_SRPC ideal-int
  6359  pkg syscall (darwin-386), const IPPROTO_ST ideal-int
  6360  pkg syscall (darwin-386), const IPPROTO_SVMTP ideal-int
  6361  pkg syscall (darwin-386), const IPPROTO_SWIPE ideal-int
  6362  pkg syscall (darwin-386), const IPPROTO_TCF ideal-int
  6363  pkg syscall (darwin-386), const IPPROTO_TP ideal-int
  6364  pkg syscall (darwin-386), const IPPROTO_TPXX ideal-int
  6365  pkg syscall (darwin-386), const IPPROTO_TRUNK1 ideal-int
  6366  pkg syscall (darwin-386), const IPPROTO_TRUNK2 ideal-int
  6367  pkg syscall (darwin-386), const IPPROTO_TTP ideal-int
  6368  pkg syscall (darwin-386), const IPPROTO_VINES ideal-int
  6369  pkg syscall (darwin-386), const IPPROTO_VISA ideal-int
  6370  pkg syscall (darwin-386), const IPPROTO_VMTP ideal-int
  6371  pkg syscall (darwin-386), const IPPROTO_WBEXPAK ideal-int
  6372  pkg syscall (darwin-386), const IPPROTO_WBMON ideal-int
  6373  pkg syscall (darwin-386), const IPPROTO_WSN ideal-int
  6374  pkg syscall (darwin-386), const IPPROTO_XNET ideal-int
  6375  pkg syscall (darwin-386), const IPPROTO_XTP ideal-int
  6376  pkg syscall (darwin-386), const IPV6_2292DSTOPTS ideal-int
  6377  pkg syscall (darwin-386), const IPV6_2292HOPLIMIT ideal-int
  6378  pkg syscall (darwin-386), const IPV6_2292HOPOPTS ideal-int
  6379  pkg syscall (darwin-386), const IPV6_2292NEXTHOP ideal-int
  6380  pkg syscall (darwin-386), const IPV6_2292PKTINFO ideal-int
  6381  pkg syscall (darwin-386), const IPV6_2292PKTOPTIONS ideal-int
  6382  pkg syscall (darwin-386), const IPV6_2292RTHDR ideal-int
  6383  pkg syscall (darwin-386), const IPV6_BINDV6ONLY ideal-int
  6384  pkg syscall (darwin-386), const IPV6_BOUND_IF ideal-int
  6385  pkg syscall (darwin-386), const IPV6_CHECKSUM ideal-int
  6386  pkg syscall (darwin-386), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
  6387  pkg syscall (darwin-386), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
  6388  pkg syscall (darwin-386), const IPV6_DEFHLIM ideal-int
  6389  pkg syscall (darwin-386), const IPV6_FAITH ideal-int
  6390  pkg syscall (darwin-386), const IPV6_FLOWINFO_MASK ideal-int
  6391  pkg syscall (darwin-386), const IPV6_FLOWLABEL_MASK ideal-int
  6392  pkg syscall (darwin-386), const IPV6_FRAGTTL ideal-int
  6393  pkg syscall (darwin-386), const IPV6_FW_ADD ideal-int
  6394  pkg syscall (darwin-386), const IPV6_FW_DEL ideal-int
  6395  pkg syscall (darwin-386), const IPV6_FW_FLUSH ideal-int
  6396  pkg syscall (darwin-386), const IPV6_FW_GET ideal-int
  6397  pkg syscall (darwin-386), const IPV6_FW_ZERO ideal-int
  6398  pkg syscall (darwin-386), const IPV6_HLIMDEC ideal-int
  6399  pkg syscall (darwin-386), const IPV6_IPSEC_POLICY ideal-int
  6400  pkg syscall (darwin-386), const IPV6_MAXHLIM ideal-int
  6401  pkg syscall (darwin-386), const IPV6_MAXOPTHDR ideal-int
  6402  pkg syscall (darwin-386), const IPV6_MAXPACKET ideal-int
  6403  pkg syscall (darwin-386), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
  6404  pkg syscall (darwin-386), const IPV6_MAX_MEMBERSHIPS ideal-int
  6405  pkg syscall (darwin-386), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
  6406  pkg syscall (darwin-386), const IPV6_MIN_MEMBERSHIPS ideal-int
  6407  pkg syscall (darwin-386), const IPV6_MMTU ideal-int
  6408  pkg syscall (darwin-386), const IPV6_PORTRANGE ideal-int
  6409  pkg syscall (darwin-386), const IPV6_PORTRANGE_DEFAULT ideal-int
  6410  pkg syscall (darwin-386), const IPV6_PORTRANGE_HIGH ideal-int
  6411  pkg syscall (darwin-386), const IPV6_PORTRANGE_LOW ideal-int
  6412  pkg syscall (darwin-386), const IPV6_RECVTCLASS ideal-int
  6413  pkg syscall (darwin-386), const IPV6_RTHDR_LOOSE ideal-int
  6414  pkg syscall (darwin-386), const IPV6_RTHDR_STRICT ideal-int
  6415  pkg syscall (darwin-386), const IPV6_RTHDR_TYPE_0 ideal-int
  6416  pkg syscall (darwin-386), const IPV6_SOCKOPT_RESERVED1 ideal-int
  6417  pkg syscall (darwin-386), const IPV6_TCLASS ideal-int
  6418  pkg syscall (darwin-386), const IPV6_VERSION ideal-int
  6419  pkg syscall (darwin-386), const IPV6_VERSION_MASK ideal-int
  6420  pkg syscall (darwin-386), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
  6421  pkg syscall (darwin-386), const IP_BLOCK_SOURCE ideal-int
  6422  pkg syscall (darwin-386), const IP_BOUND_IF ideal-int
  6423  pkg syscall (darwin-386), const IP_DEFAULT_MULTICAST_LOOP ideal-int
  6424  pkg syscall (darwin-386), const IP_DEFAULT_MULTICAST_TTL ideal-int
  6425  pkg syscall (darwin-386), const IP_DF ideal-int
  6426  pkg syscall (darwin-386), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
  6427  pkg syscall (darwin-386), const IP_DUMMYNET_CONFIGURE ideal-int
  6428  pkg syscall (darwin-386), const IP_DUMMYNET_DEL ideal-int
  6429  pkg syscall (darwin-386), const IP_DUMMYNET_FLUSH ideal-int
  6430  pkg syscall (darwin-386), const IP_DUMMYNET_GET ideal-int
  6431  pkg syscall (darwin-386), const IP_FAITH ideal-int
  6432  pkg syscall (darwin-386), const IP_FW_ADD ideal-int
  6433  pkg syscall (darwin-386), const IP_FW_DEL ideal-int
  6434  pkg syscall (darwin-386), const IP_FW_FLUSH ideal-int
  6435  pkg syscall (darwin-386), const IP_FW_GET ideal-int
  6436  pkg syscall (darwin-386), const IP_FW_RESETLOG ideal-int
  6437  pkg syscall (darwin-386), const IP_FW_ZERO ideal-int
  6438  pkg syscall (darwin-386), const IP_HDRINCL ideal-int
  6439  pkg syscall (darwin-386), const IP_IPSEC_POLICY ideal-int
  6440  pkg syscall (darwin-386), const IP_MAXPACKET ideal-int
  6441  pkg syscall (darwin-386), const IP_MAX_GROUP_SRC_FILTER ideal-int
  6442  pkg syscall (darwin-386), const IP_MAX_MEMBERSHIPS ideal-int
  6443  pkg syscall (darwin-386), const IP_MAX_SOCK_MUTE_FILTER ideal-int
  6444  pkg syscall (darwin-386), const IP_MAX_SOCK_SRC_FILTER ideal-int
  6445  pkg syscall (darwin-386), const IP_MF ideal-int
  6446  pkg syscall (darwin-386), const IP_MIN_MEMBERSHIPS ideal-int
  6447  pkg syscall (darwin-386), const IP_MSFILTER ideal-int
  6448  pkg syscall (darwin-386), const IP_MSS ideal-int
  6449  pkg syscall (darwin-386), const IP_MULTICAST_IFINDEX ideal-int
  6450  pkg syscall (darwin-386), const IP_MULTICAST_VIF ideal-int
  6451  pkg syscall (darwin-386), const IP_NAT__XXX ideal-int
  6452  pkg syscall (darwin-386), const IP_OFFMASK ideal-int
  6453  pkg syscall (darwin-386), const IP_OLD_FW_ADD ideal-int
  6454  pkg syscall (darwin-386), const IP_OLD_FW_DEL ideal-int
  6455  pkg syscall (darwin-386), const IP_OLD_FW_FLUSH ideal-int
  6456  pkg syscall (darwin-386), const IP_OLD_FW_GET ideal-int
  6457  pkg syscall (darwin-386), const IP_OLD_FW_RESETLOG ideal-int
  6458  pkg syscall (darwin-386), const IP_OLD_FW_ZERO ideal-int
  6459  pkg syscall (darwin-386), const IP_OPTIONS ideal-int
  6460  pkg syscall (darwin-386), const IP_PKTINFO ideal-int
  6461  pkg syscall (darwin-386), const IP_PORTRANGE ideal-int
  6462  pkg syscall (darwin-386), const IP_PORTRANGE_DEFAULT ideal-int
  6463  pkg syscall (darwin-386), const IP_PORTRANGE_HIGH ideal-int
  6464  pkg syscall (darwin-386), const IP_PORTRANGE_LOW ideal-int
  6465  pkg syscall (darwin-386), const IP_RECVDSTADDR ideal-int
  6466  pkg syscall (darwin-386), const IP_RECVIF ideal-int
  6467  pkg syscall (darwin-386), const IP_RECVOPTS ideal-int
  6468  pkg syscall (darwin-386), const IP_RECVPKTINFO ideal-int
  6469  pkg syscall (darwin-386), const IP_RECVRETOPTS ideal-int
  6470  pkg syscall (darwin-386), const IP_RECVTTL ideal-int
  6471  pkg syscall (darwin-386), const IP_RETOPTS ideal-int
  6472  pkg syscall (darwin-386), const IP_RF ideal-int
  6473  pkg syscall (darwin-386), const IP_RSVP_OFF ideal-int
  6474  pkg syscall (darwin-386), const IP_RSVP_ON ideal-int
  6475  pkg syscall (darwin-386), const IP_RSVP_VIF_OFF ideal-int
  6476  pkg syscall (darwin-386), const IP_RSVP_VIF_ON ideal-int
  6477  pkg syscall (darwin-386), const IP_STRIPHDR ideal-int
  6478  pkg syscall (darwin-386), const IP_TRAFFIC_MGT_BACKGROUND ideal-int
  6479  pkg syscall (darwin-386), const IP_UNBLOCK_SOURCE ideal-int
  6480  pkg syscall (darwin-386), const LOCK_EX ideal-int
  6481  pkg syscall (darwin-386), const LOCK_NB ideal-int
  6482  pkg syscall (darwin-386), const LOCK_SH ideal-int
  6483  pkg syscall (darwin-386), const LOCK_UN ideal-int
  6484  pkg syscall (darwin-386), const MADV_CAN_REUSE ideal-int
  6485  pkg syscall (darwin-386), const MADV_DONTNEED ideal-int
  6486  pkg syscall (darwin-386), const MADV_FREE ideal-int
  6487  pkg syscall (darwin-386), const MADV_FREE_REUSABLE ideal-int
  6488  pkg syscall (darwin-386), const MADV_FREE_REUSE ideal-int
  6489  pkg syscall (darwin-386), const MADV_NORMAL ideal-int
  6490  pkg syscall (darwin-386), const MADV_RANDOM ideal-int
  6491  pkg syscall (darwin-386), const MADV_SEQUENTIAL ideal-int
  6492  pkg syscall (darwin-386), const MADV_WILLNEED ideal-int
  6493  pkg syscall (darwin-386), const MADV_ZERO_WIRED_PAGES ideal-int
  6494  pkg syscall (darwin-386), const MAP_ANON ideal-int
  6495  pkg syscall (darwin-386), const MAP_COPY ideal-int
  6496  pkg syscall (darwin-386), const MAP_FILE ideal-int
  6497  pkg syscall (darwin-386), const MAP_FIXED ideal-int
  6498  pkg syscall (darwin-386), const MAP_HASSEMAPHORE ideal-int
  6499  pkg syscall (darwin-386), const MAP_JIT ideal-int
  6500  pkg syscall (darwin-386), const MAP_NOCACHE ideal-int
  6501  pkg syscall (darwin-386), const MAP_NOEXTEND ideal-int
  6502  pkg syscall (darwin-386), const MAP_NORESERVE ideal-int
  6503  pkg syscall (darwin-386), const MAP_PRIVATE ideal-int
  6504  pkg syscall (darwin-386), const MAP_RENAME ideal-int
  6505  pkg syscall (darwin-386), const MAP_RESERVED0080 ideal-int
  6506  pkg syscall (darwin-386), const MAP_SHARED ideal-int
  6507  pkg syscall (darwin-386), const MCL_CURRENT ideal-int
  6508  pkg syscall (darwin-386), const MCL_FUTURE ideal-int
  6509  pkg syscall (darwin-386), const MSG_CTRUNC ideal-int
  6510  pkg syscall (darwin-386), const MSG_DONTROUTE ideal-int
  6511  pkg syscall (darwin-386), const MSG_DONTWAIT ideal-int
  6512  pkg syscall (darwin-386), const MSG_EOF ideal-int
  6513  pkg syscall (darwin-386), const MSG_EOR ideal-int
  6514  pkg syscall (darwin-386), const MSG_FLUSH ideal-int
  6515  pkg syscall (darwin-386), const MSG_HAVEMORE ideal-int
  6516  pkg syscall (darwin-386), const MSG_HOLD ideal-int
  6517  pkg syscall (darwin-386), const MSG_NEEDSA ideal-int
  6518  pkg syscall (darwin-386), const MSG_OOB ideal-int
  6519  pkg syscall (darwin-386), const MSG_PEEK ideal-int
  6520  pkg syscall (darwin-386), const MSG_RCVMORE ideal-int
  6521  pkg syscall (darwin-386), const MSG_SEND ideal-int
  6522  pkg syscall (darwin-386), const MSG_TRUNC ideal-int
  6523  pkg syscall (darwin-386), const MSG_WAITALL ideal-int
  6524  pkg syscall (darwin-386), const MSG_WAITSTREAM ideal-int
  6525  pkg syscall (darwin-386), const MS_ASYNC ideal-int
  6526  pkg syscall (darwin-386), const MS_DEACTIVATE ideal-int
  6527  pkg syscall (darwin-386), const MS_INVALIDATE ideal-int
  6528  pkg syscall (darwin-386), const MS_KILLPAGES ideal-int
  6529  pkg syscall (darwin-386), const MS_SYNC ideal-int
  6530  pkg syscall (darwin-386), const NAME_MAX ideal-int
  6531  pkg syscall (darwin-386), const NET_RT_DUMP ideal-int
  6532  pkg syscall (darwin-386), const NET_RT_DUMP2 ideal-int
  6533  pkg syscall (darwin-386), const NET_RT_FLAGS ideal-int
  6534  pkg syscall (darwin-386), const NET_RT_IFLIST ideal-int
  6535  pkg syscall (darwin-386), const NET_RT_IFLIST2 ideal-int
  6536  pkg syscall (darwin-386), const NET_RT_MAXID ideal-int
  6537  pkg syscall (darwin-386), const NET_RT_STAT ideal-int
  6538  pkg syscall (darwin-386), const NET_RT_TRASH ideal-int
  6539  pkg syscall (darwin-386), const NOTE_ABSOLUTE ideal-int
  6540  pkg syscall (darwin-386), const NOTE_ATTRIB ideal-int
  6541  pkg syscall (darwin-386), const NOTE_CHILD ideal-int
  6542  pkg syscall (darwin-386), const NOTE_DELETE ideal-int
  6543  pkg syscall (darwin-386), const NOTE_EXEC ideal-int
  6544  pkg syscall (darwin-386), const NOTE_EXIT ideal-int
  6545  pkg syscall (darwin-386), const NOTE_EXITSTATUS ideal-int
  6546  pkg syscall (darwin-386), const NOTE_EXTEND ideal-int
  6547  pkg syscall (darwin-386), const NOTE_FFAND ideal-int
  6548  pkg syscall (darwin-386), const NOTE_FFCOPY ideal-int
  6549  pkg syscall (darwin-386), const NOTE_FFCTRLMASK ideal-int
  6550  pkg syscall (darwin-386), const NOTE_FFLAGSMASK ideal-int
  6551  pkg syscall (darwin-386), const NOTE_FFNOP ideal-int
  6552  pkg syscall (darwin-386), const NOTE_FFOR ideal-int
  6553  pkg syscall (darwin-386), const NOTE_FORK ideal-int
  6554  pkg syscall (darwin-386), const NOTE_LINK ideal-int
  6555  pkg syscall (darwin-386), const NOTE_LOWAT ideal-int
  6556  pkg syscall (darwin-386), const NOTE_NONE ideal-int
  6557  pkg syscall (darwin-386), const NOTE_NSECONDS ideal-int
  6558  pkg syscall (darwin-386), const NOTE_PCTRLMASK ideal-int
  6559  pkg syscall (darwin-386), const NOTE_PDATAMASK ideal-int
  6560  pkg syscall (darwin-386), const NOTE_REAP ideal-int
  6561  pkg syscall (darwin-386), const NOTE_RENAME ideal-int
  6562  pkg syscall (darwin-386), const NOTE_RESOURCEEND ideal-int
  6563  pkg syscall (darwin-386), const NOTE_REVOKE ideal-int
  6564  pkg syscall (darwin-386), const NOTE_SECONDS ideal-int
  6565  pkg syscall (darwin-386), const NOTE_SIGNAL ideal-int
  6566  pkg syscall (darwin-386), const NOTE_TRACK ideal-int
  6567  pkg syscall (darwin-386), const NOTE_TRACKERR ideal-int
  6568  pkg syscall (darwin-386), const NOTE_TRIGGER ideal-int
  6569  pkg syscall (darwin-386), const NOTE_USECONDS ideal-int
  6570  pkg syscall (darwin-386), const NOTE_VM_ERROR ideal-int
  6571  pkg syscall (darwin-386), const NOTE_VM_PRESSURE ideal-int
  6572  pkg syscall (darwin-386), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE ideal-int
  6573  pkg syscall (darwin-386), const NOTE_VM_PRESSURE_TERMINATE ideal-int
  6574  pkg syscall (darwin-386), const NOTE_WRITE ideal-int
  6575  pkg syscall (darwin-386), const O_ACCMODE ideal-int
  6576  pkg syscall (darwin-386), const O_ALERT ideal-int
  6577  pkg syscall (darwin-386), const O_DIRECTORY ideal-int
  6578  pkg syscall (darwin-386), const O_DSYNC ideal-int
  6579  pkg syscall (darwin-386), const O_EVTONLY ideal-int
  6580  pkg syscall (darwin-386), const O_EXLOCK ideal-int
  6581  pkg syscall (darwin-386), const O_FSYNC ideal-int
  6582  pkg syscall (darwin-386), const O_NDELAY ideal-int
  6583  pkg syscall (darwin-386), const O_NOFOLLOW ideal-int
  6584  pkg syscall (darwin-386), const O_POPUP ideal-int
  6585  pkg syscall (darwin-386), const O_SHLOCK ideal-int
  6586  pkg syscall (darwin-386), const O_SYMLINK ideal-int
  6587  pkg syscall (darwin-386), const PROT_EXEC ideal-int
  6588  pkg syscall (darwin-386), const PROT_NONE ideal-int
  6589  pkg syscall (darwin-386), const PROT_READ ideal-int
  6590  pkg syscall (darwin-386), const PROT_WRITE ideal-int
  6591  pkg syscall (darwin-386), const PTRACE_CONT ideal-int
  6592  pkg syscall (darwin-386), const PTRACE_KILL ideal-int
  6593  pkg syscall (darwin-386), const PTRACE_TRACEME ideal-int
  6594  pkg syscall (darwin-386), const PT_ATTACH ideal-int
  6595  pkg syscall (darwin-386), const PT_ATTACHEXC ideal-int
  6596  pkg syscall (darwin-386), const PT_CONTINUE ideal-int
  6597  pkg syscall (darwin-386), const PT_DENY_ATTACH ideal-int
  6598  pkg syscall (darwin-386), const PT_DETACH ideal-int
  6599  pkg syscall (darwin-386), const PT_FIRSTMACH ideal-int
  6600  pkg syscall (darwin-386), const PT_FORCEQUOTA ideal-int
  6601  pkg syscall (darwin-386), const PT_KILL ideal-int
  6602  pkg syscall (darwin-386), const PT_READ_D ideal-int
  6603  pkg syscall (darwin-386), const PT_READ_I ideal-int
  6604  pkg syscall (darwin-386), const PT_READ_U ideal-int
  6605  pkg syscall (darwin-386), const PT_SIGEXC ideal-int
  6606  pkg syscall (darwin-386), const PT_STEP ideal-int
  6607  pkg syscall (darwin-386), const PT_THUPDATE ideal-int
  6608  pkg syscall (darwin-386), const PT_TRACE_ME ideal-int
  6609  pkg syscall (darwin-386), const PT_WRITE_D ideal-int
  6610  pkg syscall (darwin-386), const PT_WRITE_I ideal-int
  6611  pkg syscall (darwin-386), const PT_WRITE_U ideal-int
  6612  pkg syscall (darwin-386), const RLIMIT_AS ideal-int
  6613  pkg syscall (darwin-386), const RLIMIT_CORE ideal-int
  6614  pkg syscall (darwin-386), const RLIMIT_CPU ideal-int
  6615  pkg syscall (darwin-386), const RLIMIT_DATA ideal-int
  6616  pkg syscall (darwin-386), const RLIMIT_FSIZE ideal-int
  6617  pkg syscall (darwin-386), const RLIMIT_NOFILE ideal-int
  6618  pkg syscall (darwin-386), const RLIMIT_STACK ideal-int
  6619  pkg syscall (darwin-386), const RLIM_INFINITY ideal-int
  6620  pkg syscall (darwin-386), const RTAX_AUTHOR ideal-int
  6621  pkg syscall (darwin-386), const RTAX_BRD ideal-int
  6622  pkg syscall (darwin-386), const RTAX_DST ideal-int
  6623  pkg syscall (darwin-386), const RTAX_GATEWAY ideal-int
  6624  pkg syscall (darwin-386), const RTAX_GENMASK ideal-int
  6625  pkg syscall (darwin-386), const RTAX_IFA ideal-int
  6626  pkg syscall (darwin-386), const RTAX_IFP ideal-int
  6627  pkg syscall (darwin-386), const RTAX_MAX ideal-int
  6628  pkg syscall (darwin-386), const RTAX_NETMASK ideal-int
  6629  pkg syscall (darwin-386), const RTA_AUTHOR ideal-int
  6630  pkg syscall (darwin-386), const RTA_BRD ideal-int
  6631  pkg syscall (darwin-386), const RTA_DST ideal-int
  6632  pkg syscall (darwin-386), const RTA_GATEWAY ideal-int
  6633  pkg syscall (darwin-386), const RTA_GENMASK ideal-int
  6634  pkg syscall (darwin-386), const RTA_IFA ideal-int
  6635  pkg syscall (darwin-386), const RTA_IFP ideal-int
  6636  pkg syscall (darwin-386), const RTA_NETMASK ideal-int
  6637  pkg syscall (darwin-386), const RTF_BLACKHOLE ideal-int
  6638  pkg syscall (darwin-386), const RTF_BROADCAST ideal-int
  6639  pkg syscall (darwin-386), const RTF_CLONING ideal-int
  6640  pkg syscall (darwin-386), const RTF_CONDEMNED ideal-int
  6641  pkg syscall (darwin-386), const RTF_DELCLONE ideal-int
  6642  pkg syscall (darwin-386), const RTF_DONE ideal-int
  6643  pkg syscall (darwin-386), const RTF_DYNAMIC ideal-int
  6644  pkg syscall (darwin-386), const RTF_GATEWAY ideal-int
  6645  pkg syscall (darwin-386), const RTF_HOST ideal-int
  6646  pkg syscall (darwin-386), const RTF_IFREF ideal-int
  6647  pkg syscall (darwin-386), const RTF_IFSCOPE ideal-int
  6648  pkg syscall (darwin-386), const RTF_LLINFO ideal-int
  6649  pkg syscall (darwin-386), const RTF_LOCAL ideal-int
  6650  pkg syscall (darwin-386), const RTF_MODIFIED ideal-int
  6651  pkg syscall (darwin-386), const RTF_MULTICAST ideal-int
  6652  pkg syscall (darwin-386), const RTF_PINNED ideal-int
  6653  pkg syscall (darwin-386), const RTF_PRCLONING ideal-int
  6654  pkg syscall (darwin-386), const RTF_PROTO1 ideal-int
  6655  pkg syscall (darwin-386), const RTF_PROTO2 ideal-int
  6656  pkg syscall (darwin-386), const RTF_PROTO3 ideal-int
  6657  pkg syscall (darwin-386), const RTF_REJECT ideal-int
  6658  pkg syscall (darwin-386), const RTF_STATIC ideal-int
  6659  pkg syscall (darwin-386), const RTF_UP ideal-int
  6660  pkg syscall (darwin-386), const RTF_WASCLONED ideal-int
  6661  pkg syscall (darwin-386), const RTF_XRESOLVE ideal-int
  6662  pkg syscall (darwin-386), const RTM_ADD ideal-int
  6663  pkg syscall (darwin-386), const RTM_CHANGE ideal-int
  6664  pkg syscall (darwin-386), const RTM_DELADDR ideal-int
  6665  pkg syscall (darwin-386), const RTM_DELETE ideal-int
  6666  pkg syscall (darwin-386), const RTM_DELMADDR ideal-int
  6667  pkg syscall (darwin-386), const RTM_GET ideal-int
  6668  pkg syscall (darwin-386), const RTM_GET2 ideal-int
  6669  pkg syscall (darwin-386), const RTM_IFINFO ideal-int
  6670  pkg syscall (darwin-386), const RTM_IFINFO2 ideal-int
  6671  pkg syscall (darwin-386), const RTM_LOCK ideal-int
  6672  pkg syscall (darwin-386), const RTM_LOSING ideal-int
  6673  pkg syscall (darwin-386), const RTM_MISS ideal-int
  6674  pkg syscall (darwin-386), const RTM_NEWADDR ideal-int
  6675  pkg syscall (darwin-386), const RTM_NEWMADDR ideal-int
  6676  pkg syscall (darwin-386), const RTM_NEWMADDR2 ideal-int
  6677  pkg syscall (darwin-386), const RTM_OLDADD ideal-int
  6678  pkg syscall (darwin-386), const RTM_OLDDEL ideal-int
  6679  pkg syscall (darwin-386), const RTM_REDIRECT ideal-int
  6680  pkg syscall (darwin-386), const RTM_RESOLVE ideal-int
  6681  pkg syscall (darwin-386), const RTM_RTTUNIT ideal-int
  6682  pkg syscall (darwin-386), const RTM_VERSION ideal-int
  6683  pkg syscall (darwin-386), const RTV_EXPIRE ideal-int
  6684  pkg syscall (darwin-386), const RTV_HOPCOUNT ideal-int
  6685  pkg syscall (darwin-386), const RTV_MTU ideal-int
  6686  pkg syscall (darwin-386), const RTV_RPIPE ideal-int
  6687  pkg syscall (darwin-386), const RTV_RTT ideal-int
  6688  pkg syscall (darwin-386), const RTV_RTTVAR ideal-int
  6689  pkg syscall (darwin-386), const RTV_SPIPE ideal-int
  6690  pkg syscall (darwin-386), const RTV_SSTHRESH ideal-int
  6691  pkg syscall (darwin-386), const RUSAGE_CHILDREN ideal-int
  6692  pkg syscall (darwin-386), const RUSAGE_SELF ideal-int
  6693  pkg syscall (darwin-386), const SCM_CREDS ideal-int
  6694  pkg syscall (darwin-386), const SCM_RIGHTS ideal-int
  6695  pkg syscall (darwin-386), const SCM_TIMESTAMP ideal-int
  6696  pkg syscall (darwin-386), const SCM_TIMESTAMP_MONOTONIC ideal-int
  6697  pkg syscall (darwin-386), const SIGCHLD Signal
  6698  pkg syscall (darwin-386), const SIGCONT Signal
  6699  pkg syscall (darwin-386), const SIGEMT Signal
  6700  pkg syscall (darwin-386), const SIGINFO Signal
  6701  pkg syscall (darwin-386), const SIGIO Signal
  6702  pkg syscall (darwin-386), const SIGIOT Signal
  6703  pkg syscall (darwin-386), const SIGPROF Signal
  6704  pkg syscall (darwin-386), const SIGSTOP Signal
  6705  pkg syscall (darwin-386), const SIGSYS Signal
  6706  pkg syscall (darwin-386), const SIGTSTP Signal
  6707  pkg syscall (darwin-386), const SIGTTIN Signal
  6708  pkg syscall (darwin-386), const SIGTTOU Signal
  6709  pkg syscall (darwin-386), const SIGURG Signal
  6710  pkg syscall (darwin-386), const SIGUSR1 Signal
  6711  pkg syscall (darwin-386), const SIGUSR2 Signal
  6712  pkg syscall (darwin-386), const SIGVTALRM Signal
  6713  pkg syscall (darwin-386), const SIGWINCH Signal
  6714  pkg syscall (darwin-386), const SIGXCPU Signal
  6715  pkg syscall (darwin-386), const SIGXFSZ Signal
  6716  pkg syscall (darwin-386), const SIOCADDMULTI ideal-int
  6717  pkg syscall (darwin-386), const SIOCAIFADDR ideal-int
  6718  pkg syscall (darwin-386), const SIOCALIFADDR ideal-int
  6719  pkg syscall (darwin-386), const SIOCARPIPLL ideal-int
  6720  pkg syscall (darwin-386), const SIOCATMARK ideal-int
  6721  pkg syscall (darwin-386), const SIOCAUTOADDR ideal-int
  6722  pkg syscall (darwin-386), const SIOCAUTONETMASK ideal-int
  6723  pkg syscall (darwin-386), const SIOCDELMULTI ideal-int
  6724  pkg syscall (darwin-386), const SIOCDIFADDR ideal-int
  6725  pkg syscall (darwin-386), const SIOCDIFPHYADDR ideal-int
  6726  pkg syscall (darwin-386), const SIOCDLIFADDR ideal-int
  6727  pkg syscall (darwin-386), const SIOCGDRVSPEC ideal-int
  6728  pkg syscall (darwin-386), const SIOCGETSGCNT ideal-int
  6729  pkg syscall (darwin-386), const SIOCGETVIFCNT ideal-int
  6730  pkg syscall (darwin-386), const SIOCGETVLAN ideal-int
  6731  pkg syscall (darwin-386), const SIOCGHIWAT ideal-int
  6732  pkg syscall (darwin-386), const SIOCGIFADDR ideal-int
  6733  pkg syscall (darwin-386), const SIOCGIFALTMTU ideal-int
  6734  pkg syscall (darwin-386), const SIOCGIFASYNCMAP ideal-int
  6735  pkg syscall (darwin-386), const SIOCGIFBOND ideal-int
  6736  pkg syscall (darwin-386), const SIOCGIFBRDADDR ideal-int
  6737  pkg syscall (darwin-386), const SIOCGIFCAP ideal-int
  6738  pkg syscall (darwin-386), const SIOCGIFCONF ideal-int
  6739  pkg syscall (darwin-386), const SIOCGIFDEVMTU ideal-int
  6740  pkg syscall (darwin-386), const SIOCGIFDSTADDR ideal-int
  6741  pkg syscall (darwin-386), const SIOCGIFFLAGS ideal-int
  6742  pkg syscall (darwin-386), const SIOCGIFGENERIC ideal-int
  6743  pkg syscall (darwin-386), const SIOCGIFKPI ideal-int
  6744  pkg syscall (darwin-386), const SIOCGIFMAC ideal-int
  6745  pkg syscall (darwin-386), const SIOCGIFMEDIA ideal-int
  6746  pkg syscall (darwin-386), const SIOCGIFMETRIC ideal-int
  6747  pkg syscall (darwin-386), const SIOCGIFMTU ideal-int
  6748  pkg syscall (darwin-386), const SIOCGIFNETMASK ideal-int
  6749  pkg syscall (darwin-386), const SIOCGIFPDSTADDR ideal-int
  6750  pkg syscall (darwin-386), const SIOCGIFPHYS ideal-int
  6751  pkg syscall (darwin-386), const SIOCGIFPSRCADDR ideal-int
  6752  pkg syscall (darwin-386), const SIOCGIFSTATUS ideal-int
  6753  pkg syscall (darwin-386), const SIOCGIFVLAN ideal-int
  6754  pkg syscall (darwin-386), const SIOCGIFWAKEFLAGS ideal-int
  6755  pkg syscall (darwin-386), const SIOCGLIFADDR ideal-int
  6756  pkg syscall (darwin-386), const SIOCGLIFPHYADDR ideal-int
  6757  pkg syscall (darwin-386), const SIOCGLOWAT ideal-int
  6758  pkg syscall (darwin-386), const SIOCGPGRP ideal-int
  6759  pkg syscall (darwin-386), const SIOCIFCREATE ideal-int
  6760  pkg syscall (darwin-386), const SIOCIFCREATE2 ideal-int
  6761  pkg syscall (darwin-386), const SIOCIFDESTROY ideal-int
  6762  pkg syscall (darwin-386), const SIOCRSLVMULTI ideal-int
  6763  pkg syscall (darwin-386), const SIOCSDRVSPEC ideal-int
  6764  pkg syscall (darwin-386), const SIOCSETVLAN ideal-int
  6765  pkg syscall (darwin-386), const SIOCSHIWAT ideal-int
  6766  pkg syscall (darwin-386), const SIOCSIFADDR ideal-int
  6767  pkg syscall (darwin-386), const SIOCSIFALTMTU ideal-int
  6768  pkg syscall (darwin-386), const SIOCSIFASYNCMAP ideal-int
  6769  pkg syscall (darwin-386), const SIOCSIFBOND ideal-int
  6770  pkg syscall (darwin-386), const SIOCSIFBRDADDR ideal-int
  6771  pkg syscall (darwin-386), const SIOCSIFCAP ideal-int
  6772  pkg syscall (darwin-386), const SIOCSIFDSTADDR ideal-int
  6773  pkg syscall (darwin-386), const SIOCSIFFLAGS ideal-int
  6774  pkg syscall (darwin-386), const SIOCSIFGENERIC ideal-int
  6775  pkg syscall (darwin-386), const SIOCSIFKPI ideal-int
  6776  pkg syscall (darwin-386), const SIOCSIFLLADDR ideal-int
  6777  pkg syscall (darwin-386), const SIOCSIFMAC ideal-int
  6778  pkg syscall (darwin-386), const SIOCSIFMEDIA ideal-int
  6779  pkg syscall (darwin-386), const SIOCSIFMETRIC ideal-int
  6780  pkg syscall (darwin-386), const SIOCSIFMTU ideal-int
  6781  pkg syscall (darwin-386), const SIOCSIFNETMASK ideal-int
  6782  pkg syscall (darwin-386), const SIOCSIFPHYADDR ideal-int
  6783  pkg syscall (darwin-386), const SIOCSIFPHYS ideal-int
  6784  pkg syscall (darwin-386), const SIOCSIFVLAN ideal-int
  6785  pkg syscall (darwin-386), const SIOCSLIFPHYADDR ideal-int
  6786  pkg syscall (darwin-386), const SIOCSLOWAT ideal-int
  6787  pkg syscall (darwin-386), const SIOCSPGRP ideal-int
  6788  pkg syscall (darwin-386), const SOCK_MAXADDRLEN ideal-int
  6789  pkg syscall (darwin-386), const SOCK_RDM ideal-int
  6790  pkg syscall (darwin-386), const SO_ACCEPTCONN ideal-int
  6791  pkg syscall (darwin-386), const SO_DEBUG ideal-int
  6792  pkg syscall (darwin-386), const SO_DONTTRUNC ideal-int
  6793  pkg syscall (darwin-386), const SO_ERROR ideal-int
  6794  pkg syscall (darwin-386), const SO_LABEL ideal-int
  6795  pkg syscall (darwin-386), const SO_LINGER_SEC ideal-int
  6796  pkg syscall (darwin-386), const SO_NKE ideal-int
  6797  pkg syscall (darwin-386), const SO_NOADDRERR ideal-int
  6798  pkg syscall (darwin-386), const SO_NOSIGPIPE ideal-int
  6799  pkg syscall (darwin-386), const SO_NOTIFYCONFLICT ideal-int
  6800  pkg syscall (darwin-386), const SO_NP_EXTENSIONS ideal-int
  6801  pkg syscall (darwin-386), const SO_NREAD ideal-int
  6802  pkg syscall (darwin-386), const SO_NWRITE ideal-int
  6803  pkg syscall (darwin-386), const SO_OOBINLINE ideal-int
  6804  pkg syscall (darwin-386), const SO_PEERLABEL ideal-int
  6805  pkg syscall (darwin-386), const SO_RANDOMPORT ideal-int
  6806  pkg syscall (darwin-386), const SO_RCVLOWAT ideal-int
  6807  pkg syscall (darwin-386), const SO_RCVTIMEO ideal-int
  6808  pkg syscall (darwin-386), const SO_RESTRICTIONS ideal-int
  6809  pkg syscall (darwin-386), const SO_RESTRICT_DENYIN ideal-int
  6810  pkg syscall (darwin-386), const SO_RESTRICT_DENYOUT ideal-int
  6811  pkg syscall (darwin-386), const SO_RESTRICT_DENYSET ideal-int
  6812  pkg syscall (darwin-386), const SO_REUSEPORT ideal-int
  6813  pkg syscall (darwin-386), const SO_REUSESHAREUID ideal-int
  6814  pkg syscall (darwin-386), const SO_SNDLOWAT ideal-int
  6815  pkg syscall (darwin-386), const SO_SNDTIMEO ideal-int
  6816  pkg syscall (darwin-386), const SO_TIMESTAMP ideal-int
  6817  pkg syscall (darwin-386), const SO_TIMESTAMP_MONOTONIC ideal-int
  6818  pkg syscall (darwin-386), const SO_TYPE ideal-int
  6819  pkg syscall (darwin-386), const SO_UPCALLCLOSEWAIT ideal-int
  6820  pkg syscall (darwin-386), const SO_USELOOPBACK ideal-int
  6821  pkg syscall (darwin-386), const SO_WANTMORE ideal-int
  6822  pkg syscall (darwin-386), const SO_WANTOOBFLAG ideal-int
  6823  pkg syscall (darwin-386), const SYS_ACCEPT ideal-int
  6824  pkg syscall (darwin-386), const SYS_ACCEPT_NOCANCEL ideal-int
  6825  pkg syscall (darwin-386), const SYS_ACCESS ideal-int
  6826  pkg syscall (darwin-386), const SYS_ACCESS_EXTENDED ideal-int
  6827  pkg syscall (darwin-386), const SYS_ACCT ideal-int
  6828  pkg syscall (darwin-386), const SYS_ADD_PROFIL ideal-int
  6829  pkg syscall (darwin-386), const SYS_ADJTIME ideal-int
  6830  pkg syscall (darwin-386), const SYS_AIO_CANCEL ideal-int
  6831  pkg syscall (darwin-386), const SYS_AIO_ERROR ideal-int
  6832  pkg syscall (darwin-386), const SYS_AIO_FSYNC ideal-int
  6833  pkg syscall (darwin-386), const SYS_AIO_READ ideal-int
  6834  pkg syscall (darwin-386), const SYS_AIO_RETURN ideal-int
  6835  pkg syscall (darwin-386), const SYS_AIO_SUSPEND ideal-int
  6836  pkg syscall (darwin-386), const SYS_AIO_SUSPEND_NOCANCEL ideal-int
  6837  pkg syscall (darwin-386), const SYS_AIO_WRITE ideal-int
  6838  pkg syscall (darwin-386), const SYS_ATGETMSG ideal-int
  6839  pkg syscall (darwin-386), const SYS_ATPGETREQ ideal-int
  6840  pkg syscall (darwin-386), const SYS_ATPGETRSP ideal-int
  6841  pkg syscall (darwin-386), const SYS_ATPSNDREQ ideal-int
  6842  pkg syscall (darwin-386), const SYS_ATPSNDRSP ideal-int
  6843  pkg syscall (darwin-386), const SYS_ATPUTMSG ideal-int
  6844  pkg syscall (darwin-386), const SYS_ATSOCKET ideal-int
  6845  pkg syscall (darwin-386), const SYS_AUDIT ideal-int
  6846  pkg syscall (darwin-386), const SYS_AUDITCTL ideal-int
  6847  pkg syscall (darwin-386), const SYS_AUDITON ideal-int
  6848  pkg syscall (darwin-386), const SYS_AUDIT_SESSION_JOIN ideal-int
  6849  pkg syscall (darwin-386), const SYS_AUDIT_SESSION_PORT ideal-int
  6850  pkg syscall (darwin-386), const SYS_AUDIT_SESSION_SELF ideal-int
  6851  pkg syscall (darwin-386), const SYS_BIND ideal-int
  6852  pkg syscall (darwin-386), const SYS_BSDTHREAD_CREATE ideal-int
  6853  pkg syscall (darwin-386), const SYS_BSDTHREAD_REGISTER ideal-int
  6854  pkg syscall (darwin-386), const SYS_BSDTHREAD_TERMINATE ideal-int
  6855  pkg syscall (darwin-386), const SYS_CHDIR ideal-int
  6856  pkg syscall (darwin-386), const SYS_CHFLAGS ideal-int
  6857  pkg syscall (darwin-386), const SYS_CHMOD ideal-int
  6858  pkg syscall (darwin-386), const SYS_CHMOD_EXTENDED ideal-int
  6859  pkg syscall (darwin-386), const SYS_CHOWN ideal-int
  6860  pkg syscall (darwin-386), const SYS_CHROOT ideal-int
  6861  pkg syscall (darwin-386), const SYS_CHUD ideal-int
  6862  pkg syscall (darwin-386), const SYS_CLOSE ideal-int
  6863  pkg syscall (darwin-386), const SYS_CLOSE_NOCANCEL ideal-int
  6864  pkg syscall (darwin-386), const SYS_CONNECT ideal-int
  6865  pkg syscall (darwin-386), const SYS_CONNECT_NOCANCEL ideal-int
  6866  pkg syscall (darwin-386), const SYS_COPYFILE ideal-int
  6867  pkg syscall (darwin-386), const SYS_CSOPS ideal-int
  6868  pkg syscall (darwin-386), const SYS_DELETE ideal-int
  6869  pkg syscall (darwin-386), const SYS_DUP ideal-int
  6870  pkg syscall (darwin-386), const SYS_DUP2 ideal-int
  6871  pkg syscall (darwin-386), const SYS_EXCHANGEDATA ideal-int
  6872  pkg syscall (darwin-386), const SYS_EXECVE ideal-int
  6873  pkg syscall (darwin-386), const SYS_EXIT ideal-int
  6874  pkg syscall (darwin-386), const SYS_FCHDIR ideal-int
  6875  pkg syscall (darwin-386), const SYS_FCHFLAGS ideal-int
  6876  pkg syscall (darwin-386), const SYS_FCHMOD ideal-int
  6877  pkg syscall (darwin-386), const SYS_FCHMOD_EXTENDED ideal-int
  6878  pkg syscall (darwin-386), const SYS_FCHOWN ideal-int
  6879  pkg syscall (darwin-386), const SYS_FCNTL ideal-int
  6880  pkg syscall (darwin-386), const SYS_FCNTL_NOCANCEL ideal-int
  6881  pkg syscall (darwin-386), const SYS_FDATASYNC ideal-int
  6882  pkg syscall (darwin-386), const SYS_FFSCTL ideal-int
  6883  pkg syscall (darwin-386), const SYS_FGETATTRLIST ideal-int
  6884  pkg syscall (darwin-386), const SYS_FGETXATTR ideal-int
  6885  pkg syscall (darwin-386), const SYS_FHOPEN ideal-int
  6886  pkg syscall (darwin-386), const SYS_FILEPORT_MAKEFD ideal-int
  6887  pkg syscall (darwin-386), const SYS_FILEPORT_MAKEPORT ideal-int
  6888  pkg syscall (darwin-386), const SYS_FLISTXATTR ideal-int
  6889  pkg syscall (darwin-386), const SYS_FLOCK ideal-int
  6890  pkg syscall (darwin-386), const SYS_FORK ideal-int
  6891  pkg syscall (darwin-386), const SYS_FPATHCONF ideal-int
  6892  pkg syscall (darwin-386), const SYS_FREMOVEXATTR ideal-int
  6893  pkg syscall (darwin-386), const SYS_FSCTL ideal-int
  6894  pkg syscall (darwin-386), const SYS_FSETATTRLIST ideal-int
  6895  pkg syscall (darwin-386), const SYS_FSETXATTR ideal-int
  6896  pkg syscall (darwin-386), const SYS_FSGETPATH ideal-int
  6897  pkg syscall (darwin-386), const SYS_FSTAT ideal-int
  6898  pkg syscall (darwin-386), const SYS_FSTAT64 ideal-int
  6899  pkg syscall (darwin-386), const SYS_FSTAT64_EXTENDED ideal-int
  6900  pkg syscall (darwin-386), const SYS_FSTATFS ideal-int
  6901  pkg syscall (darwin-386), const SYS_FSTATFS64 ideal-int
  6902  pkg syscall (darwin-386), const SYS_FSTATV ideal-int
  6903  pkg syscall (darwin-386), const SYS_FSTAT_EXTENDED ideal-int
  6904  pkg syscall (darwin-386), const SYS_FSYNC ideal-int
  6905  pkg syscall (darwin-386), const SYS_FSYNC_NOCANCEL ideal-int
  6906  pkg syscall (darwin-386), const SYS_FTRUNCATE ideal-int
  6907  pkg syscall (darwin-386), const SYS_FUTIMES ideal-int
  6908  pkg syscall (darwin-386), const SYS_GETATTRLIST ideal-int
  6909  pkg syscall (darwin-386), const SYS_GETAUDIT ideal-int
  6910  pkg syscall (darwin-386), const SYS_GETAUDIT_ADDR ideal-int
  6911  pkg syscall (darwin-386), const SYS_GETAUID ideal-int
  6912  pkg syscall (darwin-386), const SYS_GETDIRENTRIES ideal-int
  6913  pkg syscall (darwin-386), const SYS_GETDIRENTRIES64 ideal-int
  6914  pkg syscall (darwin-386), const SYS_GETDIRENTRIESATTR ideal-int
  6915  pkg syscall (darwin-386), const SYS_GETDTABLESIZE ideal-int
  6916  pkg syscall (darwin-386), const SYS_GETEGID ideal-int
  6917  pkg syscall (darwin-386), const SYS_GETEUID ideal-int
  6918  pkg syscall (darwin-386), const SYS_GETFH ideal-int
  6919  pkg syscall (darwin-386), const SYS_GETFSSTAT ideal-int
  6920  pkg syscall (darwin-386), const SYS_GETFSSTAT64 ideal-int
  6921  pkg syscall (darwin-386), const SYS_GETGID ideal-int
  6922  pkg syscall (darwin-386), const SYS_GETGROUPS ideal-int
  6923  pkg syscall (darwin-386), const SYS_GETHOSTUUID ideal-int
  6924  pkg syscall (darwin-386), const SYS_GETITIMER ideal-int
  6925  pkg syscall (darwin-386), const SYS_GETLCID ideal-int
  6926  pkg syscall (darwin-386), const SYS_GETLOGIN ideal-int
  6927  pkg syscall (darwin-386), const SYS_GETPEERNAME ideal-int
  6928  pkg syscall (darwin-386), const SYS_GETPGID ideal-int
  6929  pkg syscall (darwin-386), const SYS_GETPGRP ideal-int
  6930  pkg syscall (darwin-386), const SYS_GETPID ideal-int
  6931  pkg syscall (darwin-386), const SYS_GETPPID ideal-int
  6932  pkg syscall (darwin-386), const SYS_GETPRIORITY ideal-int
  6933  pkg syscall (darwin-386), const SYS_GETRLIMIT ideal-int
  6934  pkg syscall (darwin-386), const SYS_GETRUSAGE ideal-int
  6935  pkg syscall (darwin-386), const SYS_GETSGROUPS ideal-int
  6936  pkg syscall (darwin-386), const SYS_GETSID ideal-int
  6937  pkg syscall (darwin-386), const SYS_GETSOCKNAME ideal-int
  6938  pkg syscall (darwin-386), const SYS_GETSOCKOPT ideal-int
  6939  pkg syscall (darwin-386), const SYS_GETTID ideal-int
  6940  pkg syscall (darwin-386), const SYS_GETTIMEOFDAY ideal-int
  6941  pkg syscall (darwin-386), const SYS_GETUID ideal-int
  6942  pkg syscall (darwin-386), const SYS_GETWGROUPS ideal-int
  6943  pkg syscall (darwin-386), const SYS_GETXATTR ideal-int
  6944  pkg syscall (darwin-386), const SYS_IDENTITYSVC ideal-int
  6945  pkg syscall (darwin-386), const SYS_INITGROUPS ideal-int
  6946  pkg syscall (darwin-386), const SYS_IOCTL ideal-int
  6947  pkg syscall (darwin-386), const SYS_IOPOLICYSYS ideal-int
  6948  pkg syscall (darwin-386), const SYS_ISSETUGID ideal-int
  6949  pkg syscall (darwin-386), const SYS_KDEBUG_TRACE ideal-int
  6950  pkg syscall (darwin-386), const SYS_KEVENT ideal-int
  6951  pkg syscall (darwin-386), const SYS_KEVENT64 ideal-int
  6952  pkg syscall (darwin-386), const SYS_KILL ideal-int
  6953  pkg syscall (darwin-386), const SYS_KQUEUE ideal-int
  6954  pkg syscall (darwin-386), const SYS_LCHOWN ideal-int
  6955  pkg syscall (darwin-386), const SYS_LINK ideal-int
  6956  pkg syscall (darwin-386), const SYS_LIO_LISTIO ideal-int
  6957  pkg syscall (darwin-386), const SYS_LISTEN ideal-int
  6958  pkg syscall (darwin-386), const SYS_LISTXATTR ideal-int
  6959  pkg syscall (darwin-386), const SYS_LSEEK ideal-int
  6960  pkg syscall (darwin-386), const SYS_LSTAT ideal-int
  6961  pkg syscall (darwin-386), const SYS_LSTAT64 ideal-int
  6962  pkg syscall (darwin-386), const SYS_LSTAT64_EXTENDED ideal-int
  6963  pkg syscall (darwin-386), const SYS_LSTATV ideal-int
  6964  pkg syscall (darwin-386), const SYS_LSTAT_EXTENDED ideal-int
  6965  pkg syscall (darwin-386), const SYS_MADVISE ideal-int
  6966  pkg syscall (darwin-386), const SYS_MAXSYSCALL ideal-int
  6967  pkg syscall (darwin-386), const SYS_MINCORE ideal-int
  6968  pkg syscall (darwin-386), const SYS_MINHERIT ideal-int
  6969  pkg syscall (darwin-386), const SYS_MKCOMPLEX ideal-int
  6970  pkg syscall (darwin-386), const SYS_MKDIR ideal-int
  6971  pkg syscall (darwin-386), const SYS_MKDIR_EXTENDED ideal-int
  6972  pkg syscall (darwin-386), const SYS_MKFIFO ideal-int
  6973  pkg syscall (darwin-386), const SYS_MKFIFO_EXTENDED ideal-int
  6974  pkg syscall (darwin-386), const SYS_MKNOD ideal-int
  6975  pkg syscall (darwin-386), const SYS_MLOCK ideal-int
  6976  pkg syscall (darwin-386), const SYS_MLOCKALL ideal-int
  6977  pkg syscall (darwin-386), const SYS_MMAP ideal-int
  6978  pkg syscall (darwin-386), const SYS_MODWATCH ideal-int
  6979  pkg syscall (darwin-386), const SYS_MOUNT ideal-int
  6980  pkg syscall (darwin-386), const SYS_MPROTECT ideal-int
  6981  pkg syscall (darwin-386), const SYS_MSGCTL ideal-int
  6982  pkg syscall (darwin-386), const SYS_MSGGET ideal-int
  6983  pkg syscall (darwin-386), const SYS_MSGRCV ideal-int
  6984  pkg syscall (darwin-386), const SYS_MSGRCV_NOCANCEL ideal-int
  6985  pkg syscall (darwin-386), const SYS_MSGSND ideal-int
  6986  pkg syscall (darwin-386), const SYS_MSGSND_NOCANCEL ideal-int
  6987  pkg syscall (darwin-386), const SYS_MSGSYS ideal-int
  6988  pkg syscall (darwin-386), const SYS_MSYNC ideal-int
  6989  pkg syscall (darwin-386), const SYS_MSYNC_NOCANCEL ideal-int
  6990  pkg syscall (darwin-386), const SYS_MUNLOCK ideal-int
  6991  pkg syscall (darwin-386), const SYS_MUNLOCKALL ideal-int
  6992  pkg syscall (darwin-386), const SYS_MUNMAP ideal-int
  6993  pkg syscall (darwin-386), const SYS_NFSCLNT ideal-int
  6994  pkg syscall (darwin-386), const SYS_NFSSVC ideal-int
  6995  pkg syscall (darwin-386), const SYS_OPEN ideal-int
  6996  pkg syscall (darwin-386), const SYS_OPEN_EXTENDED ideal-int
  6997  pkg syscall (darwin-386), const SYS_OPEN_NOCANCEL ideal-int
  6998  pkg syscall (darwin-386), const SYS_PATHCONF ideal-int
  6999  pkg syscall (darwin-386), const SYS_PID_HIBERNATE ideal-int
  7000  pkg syscall (darwin-386), const SYS_PID_RESUME ideal-int
  7001  pkg syscall (darwin-386), const SYS_PID_SHUTDOWN_SOCKETS ideal-int
  7002  pkg syscall (darwin-386), const SYS_PID_SUSPEND ideal-int
  7003  pkg syscall (darwin-386), const SYS_PIPE ideal-int
  7004  pkg syscall (darwin-386), const SYS_POLL ideal-int
  7005  pkg syscall (darwin-386), const SYS_POLL_NOCANCEL ideal-int
  7006  pkg syscall (darwin-386), const SYS_POSIX_SPAWN ideal-int
  7007  pkg syscall (darwin-386), const SYS_PREAD ideal-int
  7008  pkg syscall (darwin-386), const SYS_PREAD_NOCANCEL ideal-int
  7009  pkg syscall (darwin-386), const SYS_PROCESS_POLICY ideal-int
  7010  pkg syscall (darwin-386), const SYS_PROC_INFO ideal-int
  7011  pkg syscall (darwin-386), const SYS_PROFIL ideal-int
  7012  pkg syscall (darwin-386), const SYS_PSYNCH_CVBROAD ideal-int
  7013  pkg syscall (darwin-386), const SYS_PSYNCH_CVCLRPREPOST ideal-int
  7014  pkg syscall (darwin-386), const SYS_PSYNCH_CVSIGNAL ideal-int
  7015  pkg syscall (darwin-386), const SYS_PSYNCH_CVWAIT ideal-int
  7016  pkg syscall (darwin-386), const SYS_PSYNCH_MUTEXDROP ideal-int
  7017  pkg syscall (darwin-386), const SYS_PSYNCH_MUTEXWAIT ideal-int
  7018  pkg syscall (darwin-386), const SYS_PSYNCH_RW_DOWNGRADE ideal-int
  7019  pkg syscall (darwin-386), const SYS_PSYNCH_RW_LONGRDLOCK ideal-int
  7020  pkg syscall (darwin-386), const SYS_PSYNCH_RW_RDLOCK ideal-int
  7021  pkg syscall (darwin-386), const SYS_PSYNCH_RW_UNLOCK ideal-int
  7022  pkg syscall (darwin-386), const SYS_PSYNCH_RW_UNLOCK2 ideal-int
  7023  pkg syscall (darwin-386), const SYS_PSYNCH_RW_UPGRADE ideal-int
  7024  pkg syscall (darwin-386), const SYS_PSYNCH_RW_WRLOCK ideal-int
  7025  pkg syscall (darwin-386), const SYS_PSYNCH_RW_YIELDWRLOCK ideal-int
  7026  pkg syscall (darwin-386), const SYS_PTRACE ideal-int
  7027  pkg syscall (darwin-386), const SYS_PWRITE ideal-int
  7028  pkg syscall (darwin-386), const SYS_PWRITE_NOCANCEL ideal-int
  7029  pkg syscall (darwin-386), const SYS_QUOTACTL ideal-int
  7030  pkg syscall (darwin-386), const SYS_READ ideal-int
  7031  pkg syscall (darwin-386), const SYS_READLINK ideal-int
  7032  pkg syscall (darwin-386), const SYS_READV ideal-int
  7033  pkg syscall (darwin-386), const SYS_READV_NOCANCEL ideal-int
  7034  pkg syscall (darwin-386), const SYS_READ_NOCANCEL ideal-int
  7035  pkg syscall (darwin-386), const SYS_REBOOT ideal-int
  7036  pkg syscall (darwin-386), const SYS_RECVFROM ideal-int
  7037  pkg syscall (darwin-386), const SYS_RECVFROM_NOCANCEL ideal-int
  7038  pkg syscall (darwin-386), const SYS_RECVMSG ideal-int
  7039  pkg syscall (darwin-386), const SYS_RECVMSG_NOCANCEL ideal-int
  7040  pkg syscall (darwin-386), const SYS_REMOVEXATTR ideal-int
  7041  pkg syscall (darwin-386), const SYS_RENAME ideal-int
  7042  pkg syscall (darwin-386), const SYS_REVOKE ideal-int
  7043  pkg syscall (darwin-386), const SYS_RMDIR ideal-int
  7044  pkg syscall (darwin-386), const SYS_SEARCHFS ideal-int
  7045  pkg syscall (darwin-386), const SYS_SELECT ideal-int
  7046  pkg syscall (darwin-386), const SYS_SELECT_NOCANCEL ideal-int
  7047  pkg syscall (darwin-386), const SYS_SEMCTL ideal-int
  7048  pkg syscall (darwin-386), const SYS_SEMGET ideal-int
  7049  pkg syscall (darwin-386), const SYS_SEMOP ideal-int
  7050  pkg syscall (darwin-386), const SYS_SEMSYS ideal-int
  7051  pkg syscall (darwin-386), const SYS_SEM_CLOSE ideal-int
  7052  pkg syscall (darwin-386), const SYS_SEM_DESTROY ideal-int
  7053  pkg syscall (darwin-386), const SYS_SEM_GETVALUE ideal-int
  7054  pkg syscall (darwin-386), const SYS_SEM_INIT ideal-int
  7055  pkg syscall (darwin-386), const SYS_SEM_OPEN ideal-int
  7056  pkg syscall (darwin-386), const SYS_SEM_POST ideal-int
  7057  pkg syscall (darwin-386), const SYS_SEM_TRYWAIT ideal-int
  7058  pkg syscall (darwin-386), const SYS_SEM_UNLINK ideal-int
  7059  pkg syscall (darwin-386), const SYS_SEM_WAIT ideal-int
  7060  pkg syscall (darwin-386), const SYS_SEM_WAIT_NOCANCEL ideal-int
  7061  pkg syscall (darwin-386), const SYS_SENDFILE ideal-int
  7062  pkg syscall (darwin-386), const SYS_SENDMSG ideal-int
  7063  pkg syscall (darwin-386), const SYS_SENDMSG_NOCANCEL ideal-int
  7064  pkg syscall (darwin-386), const SYS_SENDTO ideal-int
  7065  pkg syscall (darwin-386), const SYS_SENDTO_NOCANCEL ideal-int
  7066  pkg syscall (darwin-386), const SYS_SETATTRLIST ideal-int
  7067  pkg syscall (darwin-386), const SYS_SETAUDIT ideal-int
  7068  pkg syscall (darwin-386), const SYS_SETAUDIT_ADDR ideal-int
  7069  pkg syscall (darwin-386), const SYS_SETAUID ideal-int
  7070  pkg syscall (darwin-386), const SYS_SETEGID ideal-int
  7071  pkg syscall (darwin-386), const SYS_SETEUID ideal-int
  7072  pkg syscall (darwin-386), const SYS_SETGID ideal-int
  7073  pkg syscall (darwin-386), const SYS_SETGROUPS ideal-int
  7074  pkg syscall (darwin-386), const SYS_SETITIMER ideal-int
  7075  pkg syscall (darwin-386), const SYS_SETLCID ideal-int
  7076  pkg syscall (darwin-386), const SYS_SETLOGIN ideal-int
  7077  pkg syscall (darwin-386), const SYS_SETPGID ideal-int
  7078  pkg syscall (darwin-386), const SYS_SETPRIORITY ideal-int
  7079  pkg syscall (darwin-386), const SYS_SETPRIVEXEC ideal-int
  7080  pkg syscall (darwin-386), const SYS_SETREGID ideal-int
  7081  pkg syscall (darwin-386), const SYS_SETREUID ideal-int
  7082  pkg syscall (darwin-386), const SYS_SETRLIMIT ideal-int
  7083  pkg syscall (darwin-386), const SYS_SETSGROUPS ideal-int
  7084  pkg syscall (darwin-386), const SYS_SETSID ideal-int
  7085  pkg syscall (darwin-386), const SYS_SETSOCKOPT ideal-int
  7086  pkg syscall (darwin-386), const SYS_SETTID ideal-int
  7087  pkg syscall (darwin-386), const SYS_SETTID_WITH_PID ideal-int
  7088  pkg syscall (darwin-386), const SYS_SETTIMEOFDAY ideal-int
  7089  pkg syscall (darwin-386), const SYS_SETUID ideal-int
  7090  pkg syscall (darwin-386), const SYS_SETWGROUPS ideal-int
  7091  pkg syscall (darwin-386), const SYS_SETXATTR ideal-int
  7092  pkg syscall (darwin-386), const SYS_SHARED_REGION_CHECK_NP ideal-int
  7093  pkg syscall (darwin-386), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int
  7094  pkg syscall (darwin-386), const SYS_SHMAT ideal-int
  7095  pkg syscall (darwin-386), const SYS_SHMCTL ideal-int
  7096  pkg syscall (darwin-386), const SYS_SHMDT ideal-int
  7097  pkg syscall (darwin-386), const SYS_SHMGET ideal-int
  7098  pkg syscall (darwin-386), const SYS_SHMSYS ideal-int
  7099  pkg syscall (darwin-386), const SYS_SHM_OPEN ideal-int
  7100  pkg syscall (darwin-386), const SYS_SHM_UNLINK ideal-int
  7101  pkg syscall (darwin-386), const SYS_SHUTDOWN ideal-int
  7102  pkg syscall (darwin-386), const SYS_SIGACTION ideal-int
  7103  pkg syscall (darwin-386), const SYS_SIGALTSTACK ideal-int
  7104  pkg syscall (darwin-386), const SYS_SIGPENDING ideal-int
  7105  pkg syscall (darwin-386), const SYS_SIGPROCMASK ideal-int
  7106  pkg syscall (darwin-386), const SYS_SIGRETURN ideal-int
  7107  pkg syscall (darwin-386), const SYS_SIGSUSPEND ideal-int
  7108  pkg syscall (darwin-386), const SYS_SIGSUSPEND_NOCANCEL ideal-int
  7109  pkg syscall (darwin-386), const SYS_SOCKET ideal-int
  7110  pkg syscall (darwin-386), const SYS_SOCKETPAIR ideal-int
  7111  pkg syscall (darwin-386), const SYS_STACK_SNAPSHOT ideal-int
  7112  pkg syscall (darwin-386), const SYS_STAT ideal-int
  7113  pkg syscall (darwin-386), const SYS_STAT64 ideal-int
  7114  pkg syscall (darwin-386), const SYS_STAT64_EXTENDED ideal-int
  7115  pkg syscall (darwin-386), const SYS_STATFS ideal-int
  7116  pkg syscall (darwin-386), const SYS_STATFS64 ideal-int
  7117  pkg syscall (darwin-386), const SYS_STATV ideal-int
  7118  pkg syscall (darwin-386), const SYS_STAT_EXTENDED ideal-int
  7119  pkg syscall (darwin-386), const SYS_SWAPON ideal-int
  7120  pkg syscall (darwin-386), const SYS_SYMLINK ideal-int
  7121  pkg syscall (darwin-386), const SYS_SYNC ideal-int
  7122  pkg syscall (darwin-386), const SYS_SYSCALL ideal-int
  7123  pkg syscall (darwin-386), const SYS_THREAD_SELFID ideal-int
  7124  pkg syscall (darwin-386), const SYS_TRUNCATE ideal-int
  7125  pkg syscall (darwin-386), const SYS_UMASK ideal-int
  7126  pkg syscall (darwin-386), const SYS_UMASK_EXTENDED ideal-int
  7127  pkg syscall (darwin-386), const SYS_UNDELETE ideal-int
  7128  pkg syscall (darwin-386), const SYS_UNLINK ideal-int
  7129  pkg syscall (darwin-386), const SYS_UNMOUNT ideal-int
  7130  pkg syscall (darwin-386), const SYS_UTIMES ideal-int
  7131  pkg syscall (darwin-386), const SYS_VFORK ideal-int
  7132  pkg syscall (darwin-386), const SYS_VM_PRESSURE_MONITOR ideal-int
  7133  pkg syscall (darwin-386), const SYS_WAIT4 ideal-int
  7134  pkg syscall (darwin-386), const SYS_WAIT4_NOCANCEL ideal-int
  7135  pkg syscall (darwin-386), const SYS_WAITEVENT ideal-int
  7136  pkg syscall (darwin-386), const SYS_WAITID ideal-int
  7137  pkg syscall (darwin-386), const SYS_WAITID_NOCANCEL ideal-int
  7138  pkg syscall (darwin-386), const SYS_WATCHEVENT ideal-int
  7139  pkg syscall (darwin-386), const SYS_WORKQ_KERNRETURN ideal-int
  7140  pkg syscall (darwin-386), const SYS_WORKQ_OPEN ideal-int
  7141  pkg syscall (darwin-386), const SYS_WRITE ideal-int
  7142  pkg syscall (darwin-386), const SYS_WRITEV ideal-int
  7143  pkg syscall (darwin-386), const SYS_WRITEV_NOCANCEL ideal-int
  7144  pkg syscall (darwin-386), const SYS_WRITE_NOCANCEL ideal-int
  7145  pkg syscall (darwin-386), const SYS___DISABLE_THREADSIGNAL ideal-int
  7146  pkg syscall (darwin-386), const SYS___MAC_EXECVE ideal-int
  7147  pkg syscall (darwin-386), const SYS___MAC_GETFSSTAT ideal-int
  7148  pkg syscall (darwin-386), const SYS___MAC_GET_FD ideal-int
  7149  pkg syscall (darwin-386), const SYS___MAC_GET_FILE ideal-int
  7150  pkg syscall (darwin-386), const SYS___MAC_GET_LCID ideal-int
  7151  pkg syscall (darwin-386), const SYS___MAC_GET_LCTX ideal-int
  7152  pkg syscall (darwin-386), const SYS___MAC_GET_LINK ideal-int
  7153  pkg syscall (darwin-386), const SYS___MAC_GET_MOUNT ideal-int
  7154  pkg syscall (darwin-386), const SYS___MAC_GET_PID ideal-int
  7155  pkg syscall (darwin-386), const SYS___MAC_GET_PROC ideal-int
  7156  pkg syscall (darwin-386), const SYS___MAC_MOUNT ideal-int
  7157  pkg syscall (darwin-386), const SYS___MAC_SET_FD ideal-int
  7158  pkg syscall (darwin-386), const SYS___MAC_SET_FILE ideal-int
  7159  pkg syscall (darwin-386), const SYS___MAC_SET_LCTX ideal-int
  7160  pkg syscall (darwin-386), const SYS___MAC_SET_LINK ideal-int
  7161  pkg syscall (darwin-386), const SYS___MAC_SET_PROC ideal-int
  7162  pkg syscall (darwin-386), const SYS___MAC_SYSCALL ideal-int
  7163  pkg syscall (darwin-386), const SYS___OLD_SEMWAIT_SIGNAL ideal-int
  7164  pkg syscall (darwin-386), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL ideal-int
  7165  pkg syscall (darwin-386), const SYS___PTHREAD_CANCELED ideal-int
  7166  pkg syscall (darwin-386), const SYS___PTHREAD_CHDIR ideal-int
  7167  pkg syscall (darwin-386), const SYS___PTHREAD_FCHDIR ideal-int
  7168  pkg syscall (darwin-386), const SYS___PTHREAD_KILL ideal-int
  7169  pkg syscall (darwin-386), const SYS___PTHREAD_MARKCANCEL ideal-int
  7170  pkg syscall (darwin-386), const SYS___PTHREAD_SIGMASK ideal-int
  7171  pkg syscall (darwin-386), const SYS___SEMWAIT_SIGNAL ideal-int
  7172  pkg syscall (darwin-386), const SYS___SEMWAIT_SIGNAL_NOCANCEL ideal-int
  7173  pkg syscall (darwin-386), const SYS___SIGWAIT ideal-int
  7174  pkg syscall (darwin-386), const SYS___SIGWAIT_NOCANCEL ideal-int
  7175  pkg syscall (darwin-386), const SYS___SYSCTL ideal-int
  7176  pkg syscall (darwin-386), const S_IEXEC ideal-int
  7177  pkg syscall (darwin-386), const S_IFWHT ideal-int
  7178  pkg syscall (darwin-386), const S_IREAD ideal-int
  7179  pkg syscall (darwin-386), const S_IRGRP ideal-int
  7180  pkg syscall (darwin-386), const S_IROTH ideal-int
  7181  pkg syscall (darwin-386), const S_IRWXG ideal-int
  7182  pkg syscall (darwin-386), const S_IRWXO ideal-int
  7183  pkg syscall (darwin-386), const S_IRWXU ideal-int
  7184  pkg syscall (darwin-386), const S_ISTXT ideal-int
  7185  pkg syscall (darwin-386), const S_IWGRP ideal-int
  7186  pkg syscall (darwin-386), const S_IWOTH ideal-int
  7187  pkg syscall (darwin-386), const S_IWRITE ideal-int
  7188  pkg syscall (darwin-386), const S_IXGRP ideal-int
  7189  pkg syscall (darwin-386), const S_IXOTH ideal-int
  7190  pkg syscall (darwin-386), const SizeofBpfHdr ideal-int
  7191  pkg syscall (darwin-386), const SizeofBpfInsn ideal-int
  7192  pkg syscall (darwin-386), const SizeofBpfProgram ideal-int
  7193  pkg syscall (darwin-386), const SizeofBpfStat ideal-int
  7194  pkg syscall (darwin-386), const SizeofBpfVersion ideal-int
  7195  pkg syscall (darwin-386), const SizeofCmsghdr ideal-int
  7196  pkg syscall (darwin-386), const SizeofIPMreq ideal-int
  7197  pkg syscall (darwin-386), const SizeofIPv6Mreq ideal-int
  7198  pkg syscall (darwin-386), const SizeofIfData ideal-int
  7199  pkg syscall (darwin-386), const SizeofIfMsghdr ideal-int
  7200  pkg syscall (darwin-386), const SizeofIfaMsghdr ideal-int
  7201  pkg syscall (darwin-386), const SizeofIfmaMsghdr ideal-int
  7202  pkg syscall (darwin-386), const SizeofIfmaMsghdr2 ideal-int
  7203  pkg syscall (darwin-386), const SizeofInet6Pktinfo ideal-int
  7204  pkg syscall (darwin-386), const SizeofLinger ideal-int
  7205  pkg syscall (darwin-386), const SizeofMsghdr ideal-int
  7206  pkg syscall (darwin-386), const SizeofRtMetrics ideal-int
  7207  pkg syscall (darwin-386), const SizeofRtMsghdr ideal-int
  7208  pkg syscall (darwin-386), const SizeofSockaddrAny ideal-int
  7209  pkg syscall (darwin-386), const SizeofSockaddrDatalink ideal-int
  7210  pkg syscall (darwin-386), const SizeofSockaddrInet4 ideal-int
  7211  pkg syscall (darwin-386), const SizeofSockaddrInet6 ideal-int
  7212  pkg syscall (darwin-386), const SizeofSockaddrUnix ideal-int
  7213  pkg syscall (darwin-386), const TCP_CONNECTIONTIMEOUT ideal-int
  7214  pkg syscall (darwin-386), const TCP_KEEPALIVE ideal-int
  7215  pkg syscall (darwin-386), const TCP_MAXHLEN ideal-int
  7216  pkg syscall (darwin-386), const TCP_MAXOLEN ideal-int
  7217  pkg syscall (darwin-386), const TCP_MAXSEG ideal-int
  7218  pkg syscall (darwin-386), const TCP_MAXWIN ideal-int
  7219  pkg syscall (darwin-386), const TCP_MAX_SACK ideal-int
  7220  pkg syscall (darwin-386), const TCP_MAX_WINSHIFT ideal-int
  7221  pkg syscall (darwin-386), const TCP_MINMSS ideal-int
  7222  pkg syscall (darwin-386), const TCP_MINMSSOVERLOAD ideal-int
  7223  pkg syscall (darwin-386), const TCP_MSS ideal-int
  7224  pkg syscall (darwin-386), const TCP_NOOPT ideal-int
  7225  pkg syscall (darwin-386), const TCP_NOPUSH ideal-int
  7226  pkg syscall (darwin-386), const TCP_RXT_CONNDROPTIME ideal-int
  7227  pkg syscall (darwin-386), const TCP_RXT_FINDROP ideal-int
  7228  pkg syscall (darwin-386), const TIOCCBRK ideal-int
  7229  pkg syscall (darwin-386), const TIOCCDTR ideal-int
  7230  pkg syscall (darwin-386), const TIOCCONS ideal-int
  7231  pkg syscall (darwin-386), const TIOCDCDTIMESTAMP ideal-int
  7232  pkg syscall (darwin-386), const TIOCDRAIN ideal-int
  7233  pkg syscall (darwin-386), const TIOCDSIMICROCODE ideal-int
  7234  pkg syscall (darwin-386), const TIOCEXCL ideal-int
  7235  pkg syscall (darwin-386), const TIOCEXT ideal-int
  7236  pkg syscall (darwin-386), const TIOCFLUSH ideal-int
  7237  pkg syscall (darwin-386), const TIOCGDRAINWAIT ideal-int
  7238  pkg syscall (darwin-386), const TIOCGETA ideal-int
  7239  pkg syscall (darwin-386), const TIOCGETD ideal-int
  7240  pkg syscall (darwin-386), const TIOCGPGRP ideal-int
  7241  pkg syscall (darwin-386), const TIOCGWINSZ ideal-int
  7242  pkg syscall (darwin-386), const TIOCIXOFF ideal-int
  7243  pkg syscall (darwin-386), const TIOCIXON ideal-int
  7244  pkg syscall (darwin-386), const TIOCMBIC ideal-int
  7245  pkg syscall (darwin-386), const TIOCMBIS ideal-int
  7246  pkg syscall (darwin-386), const TIOCMGDTRWAIT ideal-int
  7247  pkg syscall (darwin-386), const TIOCMGET ideal-int
  7248  pkg syscall (darwin-386), const TIOCMODG ideal-int
  7249  pkg syscall (darwin-386), const TIOCMODS ideal-int
  7250  pkg syscall (darwin-386), const TIOCMSDTRWAIT ideal-int
  7251  pkg syscall (darwin-386), const TIOCMSET ideal-int
  7252  pkg syscall (darwin-386), const TIOCM_CAR ideal-int
  7253  pkg syscall (darwin-386), const TIOCM_CD ideal-int
  7254  pkg syscall (darwin-386), const TIOCM_CTS ideal-int
  7255  pkg syscall (darwin-386), const TIOCM_DSR ideal-int
  7256  pkg syscall (darwin-386), const TIOCM_DTR ideal-int
  7257  pkg syscall (darwin-386), const TIOCM_LE ideal-int
  7258  pkg syscall (darwin-386), const TIOCM_RI ideal-int
  7259  pkg syscall (darwin-386), const TIOCM_RNG ideal-int
  7260  pkg syscall (darwin-386), const TIOCM_RTS ideal-int
  7261  pkg syscall (darwin-386), const TIOCM_SR ideal-int
  7262  pkg syscall (darwin-386), const TIOCM_ST ideal-int
  7263  pkg syscall (darwin-386), const TIOCNOTTY ideal-int
  7264  pkg syscall (darwin-386), const TIOCNXCL ideal-int
  7265  pkg syscall (darwin-386), const TIOCOUTQ ideal-int
  7266  pkg syscall (darwin-386), const TIOCPKT ideal-int
  7267  pkg syscall (darwin-386), const TIOCPKT_DATA ideal-int
  7268  pkg syscall (darwin-386), const TIOCPKT_DOSTOP ideal-int
  7269  pkg syscall (darwin-386), const TIOCPKT_FLUSHREAD ideal-int
  7270  pkg syscall (darwin-386), const TIOCPKT_FLUSHWRITE ideal-int
  7271  pkg syscall (darwin-386), const TIOCPKT_IOCTL ideal-int
  7272  pkg syscall (darwin-386), const TIOCPKT_NOSTOP ideal-int
  7273  pkg syscall (darwin-386), const TIOCPKT_START ideal-int
  7274  pkg syscall (darwin-386), const TIOCPKT_STOP ideal-int
  7275  pkg syscall (darwin-386), const TIOCPTYGNAME ideal-int
  7276  pkg syscall (darwin-386), const TIOCPTYGRANT ideal-int
  7277  pkg syscall (darwin-386), const TIOCPTYUNLK ideal-int
  7278  pkg syscall (darwin-386), const TIOCREMOTE ideal-int
  7279  pkg syscall (darwin-386), const TIOCSBRK ideal-int
  7280  pkg syscall (darwin-386), const TIOCSCONS ideal-int
  7281  pkg syscall (darwin-386), const TIOCSCTTY ideal-int
  7282  pkg syscall (darwin-386), const TIOCSDRAINWAIT ideal-int
  7283  pkg syscall (darwin-386), const TIOCSDTR ideal-int
  7284  pkg syscall (darwin-386), const TIOCSETA ideal-int
  7285  pkg syscall (darwin-386), const TIOCSETAF ideal-int
  7286  pkg syscall (darwin-386), const TIOCSETAW ideal-int
  7287  pkg syscall (darwin-386), const TIOCSETD ideal-int
  7288  pkg syscall (darwin-386), const TIOCSIG ideal-int
  7289  pkg syscall (darwin-386), const TIOCSPGRP ideal-int
  7290  pkg syscall (darwin-386), const TIOCSTART ideal-int
  7291  pkg syscall (darwin-386), const TIOCSTAT ideal-int
  7292  pkg syscall (darwin-386), const TIOCSTI ideal-int
  7293  pkg syscall (darwin-386), const TIOCSTOP ideal-int
  7294  pkg syscall (darwin-386), const TIOCSWINSZ ideal-int
  7295  pkg syscall (darwin-386), const TIOCTIMESTAMP ideal-int
  7296  pkg syscall (darwin-386), const TIOCUCNTL ideal-int
  7297  pkg syscall (darwin-386), const WCONTINUED ideal-int
  7298  pkg syscall (darwin-386), const WCOREFLAG ideal-int
  7299  pkg syscall (darwin-386), const WEXITED ideal-int
  7300  pkg syscall (darwin-386), const WNOHANG ideal-int
  7301  pkg syscall (darwin-386), const WNOWAIT ideal-int
  7302  pkg syscall (darwin-386), const WORDSIZE ideal-int
  7303  pkg syscall (darwin-386), const WSTOPPED ideal-int
  7304  pkg syscall (darwin-386), const WUNTRACED ideal-int
  7305  pkg syscall (darwin-386), func Accept(int) (int, Sockaddr, error)
  7306  pkg syscall (darwin-386), func Access(string, uint32) error
  7307  pkg syscall (darwin-386), func Adjtime(*Timeval, *Timeval) error
  7308  pkg syscall (darwin-386), func Bind(int, Sockaddr) error
  7309  pkg syscall (darwin-386), func BpfBuflen(int) (int, error)
  7310  pkg syscall (darwin-386), func BpfDatalink(int) (int, error)
  7311  pkg syscall (darwin-386), func BpfHeadercmpl(int) (int, error)
  7312  pkg syscall (darwin-386), func BpfInterface(int, string) (string, error)
  7313  pkg syscall (darwin-386), func BpfJump(int, int, int, int) *BpfInsn
  7314  pkg syscall (darwin-386), func BpfStats(int) (*BpfStat, error)
  7315  pkg syscall (darwin-386), func BpfStmt(int, int) *BpfInsn
  7316  pkg syscall (darwin-386), func BpfTimeout(int) (*Timeval, error)
  7317  pkg syscall (darwin-386), func CheckBpfVersion(int) error
  7318  pkg syscall (darwin-386), func Chflags(string, int) error
  7319  pkg syscall (darwin-386), func Chroot(string) error
  7320  pkg syscall (darwin-386), func Close(int) error
  7321  pkg syscall (darwin-386), func CloseOnExec(int)
  7322  pkg syscall (darwin-386), func CmsgLen(int) int
  7323  pkg syscall (darwin-386), func CmsgSpace(int) int
  7324  pkg syscall (darwin-386), func Connect(int, Sockaddr) error
  7325  pkg syscall (darwin-386), func Dup(int) (int, error)
  7326  pkg syscall (darwin-386), func Dup2(int, int) error
  7327  pkg syscall (darwin-386), func Exchangedata(string, string, int) error
  7328  pkg syscall (darwin-386), func Fchdir(int) error
  7329  pkg syscall (darwin-386), func Fchflags(string, int) error
  7330  pkg syscall (darwin-386), func Fchmod(int, uint32) error
  7331  pkg syscall (darwin-386), func Fchown(int, int, int) error
  7332  pkg syscall (darwin-386), func Flock(int, int) error
  7333  pkg syscall (darwin-386), func FlushBpf(int) error
  7334  pkg syscall (darwin-386), func ForkExec(string, []string, *ProcAttr) (int, error)
  7335  pkg syscall (darwin-386), func Fpathconf(int, int) (int, error)
  7336  pkg syscall (darwin-386), func Fstat(int, *Stat_t) error
  7337  pkg syscall (darwin-386), func Fstatfs(int, *Statfs_t) error
  7338  pkg syscall (darwin-386), func Fsync(int) error
  7339  pkg syscall (darwin-386), func Ftruncate(int, int64) error
  7340  pkg syscall (darwin-386), func Futimes(int, []Timeval) error
  7341  pkg syscall (darwin-386), func Getdirentries(int, []uint8, *uintptr) (int, error)
  7342  pkg syscall (darwin-386), func Getdtablesize() int
  7343  pkg syscall (darwin-386), func Getfsstat([]Statfs_t, int) (int, error)
  7344  pkg syscall (darwin-386), func Getpeername(int) (Sockaddr, error)
  7345  pkg syscall (darwin-386), func Getpgid(int) (int, error)
  7346  pkg syscall (darwin-386), func Getpgrp() int
  7347  pkg syscall (darwin-386), func Getpriority(int, int) (int, error)
  7348  pkg syscall (darwin-386), func Getrlimit(int, *Rlimit) error
  7349  pkg syscall (darwin-386), func Getrusage(int, *Rusage) error
  7350  pkg syscall (darwin-386), func Getsid(int) (int, error)
  7351  pkg syscall (darwin-386), func Getsockname(int) (Sockaddr, error)
  7352  pkg syscall (darwin-386), func GetsockoptByte(int, int, int) (uint8, error)
  7353  pkg syscall (darwin-386), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
  7354  pkg syscall (darwin-386), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
  7355  pkg syscall (darwin-386), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
  7356  pkg syscall (darwin-386), func GetsockoptInt(int, int, int) (int, error)
  7357  pkg syscall (darwin-386), func Issetugid() bool
  7358  pkg syscall (darwin-386), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
  7359  pkg syscall (darwin-386), func Kill(int, Signal) error
  7360  pkg syscall (darwin-386), func Kqueue() (int, error)
  7361  pkg syscall (darwin-386), func Listen(int, int) error
  7362  pkg syscall (darwin-386), func Lstat(string, *Stat_t) error
  7363  pkg syscall (darwin-386), func Mkfifo(string, uint32) error
  7364  pkg syscall (darwin-386), func Mknod(string, uint32, int) error
  7365  pkg syscall (darwin-386), func Mmap(int, int64, int, int, int) ([]uint8, error)
  7366  pkg syscall (darwin-386), func Munmap([]uint8) error
  7367  pkg syscall (darwin-386), func NsecToTimespec(int64) Timespec
  7368  pkg syscall (darwin-386), func Open(string, int, uint32) (int, error)
  7369  pkg syscall (darwin-386), func ParseDirent([]uint8, int, []string) (int, int, []string)
  7370  pkg syscall (darwin-386), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
  7371  pkg syscall (darwin-386), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
  7372  pkg syscall (darwin-386), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
  7373  pkg syscall (darwin-386), func ParseUnixRights(*SocketControlMessage) ([]int, error)
  7374  pkg syscall (darwin-386), func Pathconf(string, int) (int, error)
  7375  pkg syscall (darwin-386), func Pipe([]int) error
  7376  pkg syscall (darwin-386), func Pread(int, []uint8, int64) (int, error)
  7377  pkg syscall (darwin-386), func PtraceAttach(int) error
  7378  pkg syscall (darwin-386), func PtraceDetach(int) error
  7379  pkg syscall (darwin-386), func Pwrite(int, []uint8, int64) (int, error)
  7380  pkg syscall (darwin-386), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  7381  pkg syscall (darwin-386), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  7382  pkg syscall (darwin-386), func Read(int, []uint8) (int, error)
  7383  pkg syscall (darwin-386), func ReadDirent(int, []uint8) (int, error)
  7384  pkg syscall (darwin-386), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
  7385  pkg syscall (darwin-386), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
  7386  pkg syscall (darwin-386), func Revoke(string) error
  7387  pkg syscall (darwin-386), func RouteRIB(int, int) ([]uint8, error)
  7388  pkg syscall (darwin-386), func Seek(int, int64, int) (int64, error)
  7389  pkg syscall (darwin-386), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
  7390  pkg syscall (darwin-386), func Sendfile(int, int, *int64, int) (int, error)
  7391  pkg syscall (darwin-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
  7392  pkg syscall (darwin-386), func Sendto(int, []uint8, int, Sockaddr) error
  7393  pkg syscall (darwin-386), func SetBpf(int, []BpfInsn) error
  7394  pkg syscall (darwin-386), func SetBpfBuflen(int, int) (int, error)
  7395  pkg syscall (darwin-386), func SetBpfDatalink(int, int) (int, error)
  7396  pkg syscall (darwin-386), func SetBpfHeadercmpl(int, int) error
  7397  pkg syscall (darwin-386), func SetBpfImmediate(int, int) error
  7398  pkg syscall (darwin-386), func SetBpfInterface(int, string) error
  7399  pkg syscall (darwin-386), func SetBpfPromisc(int, int) error
  7400  pkg syscall (darwin-386), func SetBpfTimeout(int, *Timeval) error
  7401  pkg syscall (darwin-386), func SetKevent(*Kevent_t, int, int, int)
  7402  pkg syscall (darwin-386), func SetNonblock(int, bool) error
  7403  pkg syscall (darwin-386), func Setegid(int) error
  7404  pkg syscall (darwin-386), func Seteuid(int) error
  7405  pkg syscall (darwin-386), func Setgid(int) error
  7406  pkg syscall (darwin-386), func Setgroups([]int) error
  7407  pkg syscall (darwin-386), func Setlogin(string) error
  7408  pkg syscall (darwin-386), func Setpgid(int, int) error
  7409  pkg syscall (darwin-386), func Setpriority(int, int, int) error
  7410  pkg syscall (darwin-386), func Setprivexec(int) error
  7411  pkg syscall (darwin-386), func Setregid(int, int) error
  7412  pkg syscall (darwin-386), func Setreuid(int, int) error
  7413  pkg syscall (darwin-386), func Setrlimit(int, *Rlimit) error
  7414  pkg syscall (darwin-386), func Setsid() (int, error)
  7415  pkg syscall (darwin-386), func SetsockoptByte(int, int, int, uint8) error
  7416  pkg syscall (darwin-386), func SetsockoptIPMreq(int, int, int, *IPMreq) error
  7417  pkg syscall (darwin-386), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
  7418  pkg syscall (darwin-386), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
  7419  pkg syscall (darwin-386), func SetsockoptInt(int, int, int, int) error
  7420  pkg syscall (darwin-386), func SetsockoptLinger(int, int, int, *Linger) error
  7421  pkg syscall (darwin-386), func SetsockoptString(int, int, int, string) error
  7422  pkg syscall (darwin-386), func SetsockoptTimeval(int, int, int, *Timeval) error
  7423  pkg syscall (darwin-386), func Settimeofday(*Timeval) error
  7424  pkg syscall (darwin-386), func Setuid(int) error
  7425  pkg syscall (darwin-386), func Shutdown(int, int) error
  7426  pkg syscall (darwin-386), func Socket(int, int, int) (int, error)
  7427  pkg syscall (darwin-386), func Socketpair(int, int, int) ([2]int, error)
  7428  pkg syscall (darwin-386), func Stat(string, *Stat_t) error
  7429  pkg syscall (darwin-386), func Statfs(string, *Statfs_t) error
  7430  pkg syscall (darwin-386), func StringSlicePtr([]string) []*uint8
  7431  pkg syscall (darwin-386), func Sync() error
  7432  pkg syscall (darwin-386), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  7433  pkg syscall (darwin-386), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  7434  pkg syscall (darwin-386), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  7435  pkg syscall (darwin-386), func Sysctl(string) (string, error)
  7436  pkg syscall (darwin-386), func SysctlUint32(string) (uint32, error)
  7437  pkg syscall (darwin-386), func TimespecToNsec(Timespec) int64
  7438  pkg syscall (darwin-386), func TimevalToNsec(Timeval) int64
  7439  pkg syscall (darwin-386), func Truncate(string, int64) error
  7440  pkg syscall (darwin-386), func Umask(int) int
  7441  pkg syscall (darwin-386), func Undelete(string) error
  7442  pkg syscall (darwin-386), func UnixRights(...int) []uint8
  7443  pkg syscall (darwin-386), func Unmount(string, int) error
  7444  pkg syscall (darwin-386), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
  7445  pkg syscall (darwin-386), func Write(int, []uint8) (int, error)
  7446  pkg syscall (darwin-386), method (*Cmsghdr) SetLen(int)
  7447  pkg syscall (darwin-386), method (*Iovec) SetLen(int)
  7448  pkg syscall (darwin-386), method (*Msghdr) SetControllen(int)
  7449  pkg syscall (darwin-386), type BpfHdr struct
  7450  pkg syscall (darwin-386), type BpfHdr struct, Caplen uint32
  7451  pkg syscall (darwin-386), type BpfHdr struct, Datalen uint32
  7452  pkg syscall (darwin-386), type BpfHdr struct, Hdrlen uint16
  7453  pkg syscall (darwin-386), type BpfHdr struct, Pad_cgo_0 [2]uint8
  7454  pkg syscall (darwin-386), type BpfHdr struct, Tstamp Timeval
  7455  pkg syscall (darwin-386), type BpfInsn struct
  7456  pkg syscall (darwin-386), type BpfInsn struct, Code uint16
  7457  pkg syscall (darwin-386), type BpfInsn struct, Jf uint8
  7458  pkg syscall (darwin-386), type BpfInsn struct, Jt uint8
  7459  pkg syscall (darwin-386), type BpfInsn struct, K uint32
  7460  pkg syscall (darwin-386), type BpfProgram struct
  7461  pkg syscall (darwin-386), type BpfProgram struct, Insns *BpfInsn
  7462  pkg syscall (darwin-386), type BpfProgram struct, Len uint32
  7463  pkg syscall (darwin-386), type BpfStat struct
  7464  pkg syscall (darwin-386), type BpfStat struct, Drop uint32
  7465  pkg syscall (darwin-386), type BpfStat struct, Recv uint32
  7466  pkg syscall (darwin-386), type BpfVersion struct
  7467  pkg syscall (darwin-386), type BpfVersion struct, Major uint16
  7468  pkg syscall (darwin-386), type BpfVersion struct, Minor uint16
  7469  pkg syscall (darwin-386), type Cmsghdr struct
  7470  pkg syscall (darwin-386), type Cmsghdr struct, Len uint32
  7471  pkg syscall (darwin-386), type Cmsghdr struct, Level int32
  7472  pkg syscall (darwin-386), type Cmsghdr struct, Type int32
  7473  pkg syscall (darwin-386), type Credential struct
  7474  pkg syscall (darwin-386), type Credential struct, Gid uint32
  7475  pkg syscall (darwin-386), type Credential struct, Groups []uint32
  7476  pkg syscall (darwin-386), type Credential struct, Uid uint32
  7477  pkg syscall (darwin-386), type Dirent struct
  7478  pkg syscall (darwin-386), type Dirent struct, Ino uint64
  7479  pkg syscall (darwin-386), type Dirent struct, Name [1024]int8
  7480  pkg syscall (darwin-386), type Dirent struct, Namlen uint16
  7481  pkg syscall (darwin-386), type Dirent struct, Pad_cgo_0 [3]uint8
  7482  pkg syscall (darwin-386), type Dirent struct, Reclen uint16
  7483  pkg syscall (darwin-386), type Dirent struct, Seekoff uint64
  7484  pkg syscall (darwin-386), type Dirent struct, Type uint8
  7485  pkg syscall (darwin-386), type Fbootstraptransfer_t struct
  7486  pkg syscall (darwin-386), type Fbootstraptransfer_t struct, Buffer *uint8
  7487  pkg syscall (darwin-386), type Fbootstraptransfer_t struct, Length uint32
  7488  pkg syscall (darwin-386), type Fbootstraptransfer_t struct, Offset int64
  7489  pkg syscall (darwin-386), type FdSet struct
  7490  pkg syscall (darwin-386), type FdSet struct, Bits [32]int32
  7491  pkg syscall (darwin-386), type Flock_t struct
  7492  pkg syscall (darwin-386), type Flock_t struct, Len int64
  7493  pkg syscall (darwin-386), type Flock_t struct, Pid int32
  7494  pkg syscall (darwin-386), type Flock_t struct, Start int64
  7495  pkg syscall (darwin-386), type Flock_t struct, Type int16
  7496  pkg syscall (darwin-386), type Flock_t struct, Whence int16
  7497  pkg syscall (darwin-386), type Fsid struct
  7498  pkg syscall (darwin-386), type Fsid struct, Val [2]int32
  7499  pkg syscall (darwin-386), type Fstore_t struct
  7500  pkg syscall (darwin-386), type Fstore_t struct, Bytesalloc int64
  7501  pkg syscall (darwin-386), type Fstore_t struct, Flags uint32
  7502  pkg syscall (darwin-386), type Fstore_t struct, Length int64
  7503  pkg syscall (darwin-386), type Fstore_t struct, Offset int64
  7504  pkg syscall (darwin-386), type Fstore_t struct, Posmode int32
  7505  pkg syscall (darwin-386), type IfData struct
  7506  pkg syscall (darwin-386), type IfData struct, Addrlen uint8
  7507  pkg syscall (darwin-386), type IfData struct, Baudrate uint32
  7508  pkg syscall (darwin-386), type IfData struct, Collisions uint32
  7509  pkg syscall (darwin-386), type IfData struct, Hdrlen uint8
  7510  pkg syscall (darwin-386), type IfData struct, Hwassist uint32
  7511  pkg syscall (darwin-386), type IfData struct, Ibytes uint32
  7512  pkg syscall (darwin-386), type IfData struct, Ierrors uint32
  7513  pkg syscall (darwin-386), type IfData struct, Imcasts uint32
  7514  pkg syscall (darwin-386), type IfData struct, Ipackets uint32
  7515  pkg syscall (darwin-386), type IfData struct, Iqdrops uint32
  7516  pkg syscall (darwin-386), type IfData struct, Lastchange Timeval
  7517  pkg syscall (darwin-386), type IfData struct, Metric uint32
  7518  pkg syscall (darwin-386), type IfData struct, Mtu uint32
  7519  pkg syscall (darwin-386), type IfData struct, Noproto uint32
  7520  pkg syscall (darwin-386), type IfData struct, Obytes uint32
  7521  pkg syscall (darwin-386), type IfData struct, Oerrors uint32
  7522  pkg syscall (darwin-386), type IfData struct, Omcasts uint32
  7523  pkg syscall (darwin-386), type IfData struct, Opackets uint32
  7524  pkg syscall (darwin-386), type IfData struct, Physical uint8
  7525  pkg syscall (darwin-386), type IfData struct, Recvquota uint8
  7526  pkg syscall (darwin-386), type IfData struct, Recvtiming uint32
  7527  pkg syscall (darwin-386), type IfData struct, Reserved1 uint32
  7528  pkg syscall (darwin-386), type IfData struct, Reserved2 uint32
  7529  pkg syscall (darwin-386), type IfData struct, Type uint8
  7530  pkg syscall (darwin-386), type IfData struct, Typelen uint8
  7531  pkg syscall (darwin-386), type IfData struct, Unused1 uint8
  7532  pkg syscall (darwin-386), type IfData struct, Unused2 uint32
  7533  pkg syscall (darwin-386), type IfData struct, Xmitquota uint8
  7534  pkg syscall (darwin-386), type IfData struct, Xmittiming uint32
  7535  pkg syscall (darwin-386), type IfMsghdr struct
  7536  pkg syscall (darwin-386), type IfMsghdr struct, Addrs int32
  7537  pkg syscall (darwin-386), type IfMsghdr struct, Data IfData
  7538  pkg syscall (darwin-386), type IfMsghdr struct, Flags int32
  7539  pkg syscall (darwin-386), type IfMsghdr struct, Index uint16
  7540  pkg syscall (darwin-386), type IfMsghdr struct, Msglen uint16
  7541  pkg syscall (darwin-386), type IfMsghdr struct, Pad_cgo_0 [2]uint8
  7542  pkg syscall (darwin-386), type IfMsghdr struct, Type uint8
  7543  pkg syscall (darwin-386), type IfMsghdr struct, Version uint8
  7544  pkg syscall (darwin-386), type IfaMsghdr struct
  7545  pkg syscall (darwin-386), type IfaMsghdr struct, Addrs int32
  7546  pkg syscall (darwin-386), type IfaMsghdr struct, Flags int32
  7547  pkg syscall (darwin-386), type IfaMsghdr struct, Index uint16
  7548  pkg syscall (darwin-386), type IfaMsghdr struct, Metric int32
  7549  pkg syscall (darwin-386), type IfaMsghdr struct, Msglen uint16
  7550  pkg syscall (darwin-386), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
  7551  pkg syscall (darwin-386), type IfaMsghdr struct, Type uint8
  7552  pkg syscall (darwin-386), type IfaMsghdr struct, Version uint8
  7553  pkg syscall (darwin-386), type IfmaMsghdr struct
  7554  pkg syscall (darwin-386), type IfmaMsghdr struct, Addrs int32
  7555  pkg syscall (darwin-386), type IfmaMsghdr struct, Flags int32
  7556  pkg syscall (darwin-386), type IfmaMsghdr struct, Index uint16
  7557  pkg syscall (darwin-386), type IfmaMsghdr struct, Msglen uint16
  7558  pkg syscall (darwin-386), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
  7559  pkg syscall (darwin-386), type IfmaMsghdr struct, Type uint8
  7560  pkg syscall (darwin-386), type IfmaMsghdr struct, Version uint8
  7561  pkg syscall (darwin-386), type IfmaMsghdr2 struct
  7562  pkg syscall (darwin-386), type IfmaMsghdr2 struct, Addrs int32
  7563  pkg syscall (darwin-386), type IfmaMsghdr2 struct, Flags int32
  7564  pkg syscall (darwin-386), type IfmaMsghdr2 struct, Index uint16
  7565  pkg syscall (darwin-386), type IfmaMsghdr2 struct, Msglen uint16
  7566  pkg syscall (darwin-386), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8
  7567  pkg syscall (darwin-386), type IfmaMsghdr2 struct, Refcount int32
  7568  pkg syscall (darwin-386), type IfmaMsghdr2 struct, Type uint8
  7569  pkg syscall (darwin-386), type IfmaMsghdr2 struct, Version uint8
  7570  pkg syscall (darwin-386), type Inet6Pktinfo struct
  7571  pkg syscall (darwin-386), type Inet6Pktinfo struct, Addr [16]uint8
  7572  pkg syscall (darwin-386), type Inet6Pktinfo struct, Ifindex uint32
  7573  pkg syscall (darwin-386), type InterfaceAddrMessage struct
  7574  pkg syscall (darwin-386), type InterfaceAddrMessage struct, Data []uint8
  7575  pkg syscall (darwin-386), type InterfaceAddrMessage struct, Header IfaMsghdr
  7576  pkg syscall (darwin-386), type InterfaceMessage struct
  7577  pkg syscall (darwin-386), type InterfaceMessage struct, Data []uint8
  7578  pkg syscall (darwin-386), type InterfaceMessage struct, Header IfMsghdr
  7579  pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct
  7580  pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct, Data []uint8
  7581  pkg syscall (darwin-386), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2
  7582  pkg syscall (darwin-386), type Iovec struct
  7583  pkg syscall (darwin-386), type Iovec struct, Base *uint8
  7584  pkg syscall (darwin-386), type Iovec struct, Len uint32
  7585  pkg syscall (darwin-386), type Kevent_t struct
  7586  pkg syscall (darwin-386), type Kevent_t struct, Data int32
  7587  pkg syscall (darwin-386), type Kevent_t struct, Fflags uint32
  7588  pkg syscall (darwin-386), type Kevent_t struct, Filter int16
  7589  pkg syscall (darwin-386), type Kevent_t struct, Flags uint16
  7590  pkg syscall (darwin-386), type Kevent_t struct, Ident uint32
  7591  pkg syscall (darwin-386), type Kevent_t struct, Udata *uint8
  7592  pkg syscall (darwin-386), type Log2phys_t struct
  7593  pkg syscall (darwin-386), type Log2phys_t struct, Contigbytes int64
  7594  pkg syscall (darwin-386), type Log2phys_t struct, Devoffset int64
  7595  pkg syscall (darwin-386), type Log2phys_t struct, Flags uint32
  7596  pkg syscall (darwin-386), type Msghdr struct
  7597  pkg syscall (darwin-386), type Msghdr struct, Control *uint8
  7598  pkg syscall (darwin-386), type Msghdr struct, Controllen uint32
  7599  pkg syscall (darwin-386), type Msghdr struct, Flags int32
  7600  pkg syscall (darwin-386), type Msghdr struct, Iov *Iovec
  7601  pkg syscall (darwin-386), type Msghdr struct, Iovlen int32
  7602  pkg syscall (darwin-386), type Msghdr struct, Name *uint8
  7603  pkg syscall (darwin-386), type Msghdr struct, Namelen uint32
  7604  pkg syscall (darwin-386), type Radvisory_t struct
  7605  pkg syscall (darwin-386), type Radvisory_t struct, Count int32
  7606  pkg syscall (darwin-386), type Radvisory_t struct, Offset int64
  7607  pkg syscall (darwin-386), type RawSockaddr struct, Data [14]int8
  7608  pkg syscall (darwin-386), type RawSockaddr struct, Family uint8
  7609  pkg syscall (darwin-386), type RawSockaddr struct, Len uint8
  7610  pkg syscall (darwin-386), type RawSockaddrAny struct, Pad [92]int8
  7611  pkg syscall (darwin-386), type RawSockaddrDatalink struct
  7612  pkg syscall (darwin-386), type RawSockaddrDatalink struct, Alen uint8
  7613  pkg syscall (darwin-386), type RawSockaddrDatalink struct, Data [12]int8
  7614  pkg syscall (darwin-386), type RawSockaddrDatalink struct, Family uint8
  7615  pkg syscall (darwin-386), type RawSockaddrDatalink struct, Index uint16
  7616  pkg syscall (darwin-386), type RawSockaddrDatalink struct, Len uint8
  7617  pkg syscall (darwin-386), type RawSockaddrDatalink struct, Nlen uint8
  7618  pkg syscall (darwin-386), type RawSockaddrDatalink struct, Slen uint8
  7619  pkg syscall (darwin-386), type RawSockaddrDatalink struct, Type uint8
  7620  pkg syscall (darwin-386), type RawSockaddrInet4 struct, Family uint8
  7621  pkg syscall (darwin-386), type RawSockaddrInet4 struct, Len uint8
  7622  pkg syscall (darwin-386), type RawSockaddrInet4 struct, Zero [8]int8
  7623  pkg syscall (darwin-386), type RawSockaddrInet6 struct
  7624  pkg syscall (darwin-386), type RawSockaddrInet6 struct, Addr [16]uint8
  7625  pkg syscall (darwin-386), type RawSockaddrInet6 struct, Family uint8
  7626  pkg syscall (darwin-386), type RawSockaddrInet6 struct, Flowinfo uint32
  7627  pkg syscall (darwin-386), type RawSockaddrInet6 struct, Len uint8
  7628  pkg syscall (darwin-386), type RawSockaddrInet6 struct, Port uint16
  7629  pkg syscall (darwin-386), type RawSockaddrInet6 struct, Scope_id uint32
  7630  pkg syscall (darwin-386), type RawSockaddrUnix struct
  7631  pkg syscall (darwin-386), type RawSockaddrUnix struct, Family uint8
  7632  pkg syscall (darwin-386), type RawSockaddrUnix struct, Len uint8
  7633  pkg syscall (darwin-386), type RawSockaddrUnix struct, Path [104]int8
  7634  pkg syscall (darwin-386), type Rlimit struct
  7635  pkg syscall (darwin-386), type Rlimit struct, Cur uint64
  7636  pkg syscall (darwin-386), type Rlimit struct, Max uint64
  7637  pkg syscall (darwin-386), type RouteMessage struct
  7638  pkg syscall (darwin-386), type RouteMessage struct, Data []uint8
  7639  pkg syscall (darwin-386), type RouteMessage struct, Header RtMsghdr
  7640  pkg syscall (darwin-386), type RoutingMessage interface, unexported methods
  7641  pkg syscall (darwin-386), type RtMetrics struct
  7642  pkg syscall (darwin-386), type RtMetrics struct, Expire int32
  7643  pkg syscall (darwin-386), type RtMetrics struct, Filler [4]uint32
  7644  pkg syscall (darwin-386), type RtMetrics struct, Hopcount uint32
  7645  pkg syscall (darwin-386), type RtMetrics struct, Locks uint32
  7646  pkg syscall (darwin-386), type RtMetrics struct, Mtu uint32
  7647  pkg syscall (darwin-386), type RtMetrics struct, Pksent uint32
  7648  pkg syscall (darwin-386), type RtMetrics struct, Recvpipe uint32
  7649  pkg syscall (darwin-386), type RtMetrics struct, Rtt uint32
  7650  pkg syscall (darwin-386), type RtMetrics struct, Rttvar uint32
  7651  pkg syscall (darwin-386), type RtMetrics struct, Sendpipe uint32
  7652  pkg syscall (darwin-386), type RtMetrics struct, Ssthresh uint32
  7653  pkg syscall (darwin-386), type RtMsghdr struct
  7654  pkg syscall (darwin-386), type RtMsghdr struct, Addrs int32
  7655  pkg syscall (darwin-386), type RtMsghdr struct, Errno int32
  7656  pkg syscall (darwin-386), type RtMsghdr struct, Flags int32
  7657  pkg syscall (darwin-386), type RtMsghdr struct, Index uint16
  7658  pkg syscall (darwin-386), type RtMsghdr struct, Inits uint32
  7659  pkg syscall (darwin-386), type RtMsghdr struct, Msglen uint16
  7660  pkg syscall (darwin-386), type RtMsghdr struct, Pad_cgo_0 [2]uint8
  7661  pkg syscall (darwin-386), type RtMsghdr struct, Pid int32
  7662  pkg syscall (darwin-386), type RtMsghdr struct, Rmx RtMetrics
  7663  pkg syscall (darwin-386), type RtMsghdr struct, Seq int32
  7664  pkg syscall (darwin-386), type RtMsghdr struct, Type uint8
  7665  pkg syscall (darwin-386), type RtMsghdr struct, Use int32
  7666  pkg syscall (darwin-386), type RtMsghdr struct, Version uint8
  7667  pkg syscall (darwin-386), type Rusage struct, Idrss int32
  7668  pkg syscall (darwin-386), type Rusage struct, Inblock int32
  7669  pkg syscall (darwin-386), type Rusage struct, Isrss int32
  7670  pkg syscall (darwin-386), type Rusage struct, Ixrss int32
  7671  pkg syscall (darwin-386), type Rusage struct, Majflt int32
  7672  pkg syscall (darwin-386), type Rusage struct, Maxrss int32
  7673  pkg syscall (darwin-386), type Rusage struct, Minflt int32
  7674  pkg syscall (darwin-386), type Rusage struct, Msgrcv int32
  7675  pkg syscall (darwin-386), type Rusage struct, Msgsnd int32
  7676  pkg syscall (darwin-386), type Rusage struct, Nivcsw int32
  7677  pkg syscall (darwin-386), type Rusage struct, Nsignals int32
  7678  pkg syscall (darwin-386), type Rusage struct, Nswap int32
  7679  pkg syscall (darwin-386), type Rusage struct, Nvcsw int32
  7680  pkg syscall (darwin-386), type Rusage struct, Oublock int32
  7681  pkg syscall (darwin-386), type Rusage struct, Stime Timeval
  7682  pkg syscall (darwin-386), type Rusage struct, Utime Timeval
  7683  pkg syscall (darwin-386), type SockaddrDatalink struct
  7684  pkg syscall (darwin-386), type SockaddrDatalink struct, Alen uint8
  7685  pkg syscall (darwin-386), type SockaddrDatalink struct, Data [12]int8
  7686  pkg syscall (darwin-386), type SockaddrDatalink struct, Family uint8
  7687  pkg syscall (darwin-386), type SockaddrDatalink struct, Index uint16
  7688  pkg syscall (darwin-386), type SockaddrDatalink struct, Len uint8
  7689  pkg syscall (darwin-386), type SockaddrDatalink struct, Nlen uint8
  7690  pkg syscall (darwin-386), type SockaddrDatalink struct, Slen uint8
  7691  pkg syscall (darwin-386), type SockaddrDatalink struct, Type uint8
  7692  pkg syscall (darwin-386), type SocketControlMessage struct
  7693  pkg syscall (darwin-386), type SocketControlMessage struct, Data []uint8
  7694  pkg syscall (darwin-386), type SocketControlMessage struct, Header Cmsghdr
  7695  pkg syscall (darwin-386), type Stat_t struct
  7696  pkg syscall (darwin-386), type Stat_t struct, Atimespec Timespec
  7697  pkg syscall (darwin-386), type Stat_t struct, Birthtimespec Timespec
  7698  pkg syscall (darwin-386), type Stat_t struct, Blksize int32
  7699  pkg syscall (darwin-386), type Stat_t struct, Blocks int64
  7700  pkg syscall (darwin-386), type Stat_t struct, Ctimespec Timespec
  7701  pkg syscall (darwin-386), type Stat_t struct, Dev int32
  7702  pkg syscall (darwin-386), type Stat_t struct, Flags uint32
  7703  pkg syscall (darwin-386), type Stat_t struct, Gen uint32
  7704  pkg syscall (darwin-386), type Stat_t struct, Gid uint32
  7705  pkg syscall (darwin-386), type Stat_t struct, Ino uint64
  7706  pkg syscall (darwin-386), type Stat_t struct, Lspare int32
  7707  pkg syscall (darwin-386), type Stat_t struct, Mode uint16
  7708  pkg syscall (darwin-386), type Stat_t struct, Mtimespec Timespec
  7709  pkg syscall (darwin-386), type Stat_t struct, Nlink uint16
  7710  pkg syscall (darwin-386), type Stat_t struct, Qspare [2]int64
  7711  pkg syscall (darwin-386), type Stat_t struct, Rdev int32
  7712  pkg syscall (darwin-386), type Stat_t struct, Size int64
  7713  pkg syscall (darwin-386), type Stat_t struct, Uid uint32
  7714  pkg syscall (darwin-386), type Statfs_t struct
  7715  pkg syscall (darwin-386), type Statfs_t struct, Bavail uint64
  7716  pkg syscall (darwin-386), type Statfs_t struct, Bfree uint64
  7717  pkg syscall (darwin-386), type Statfs_t struct, Blocks uint64
  7718  pkg syscall (darwin-386), type Statfs_t struct, Bsize uint32
  7719  pkg syscall (darwin-386), type Statfs_t struct, Ffree uint64
  7720  pkg syscall (darwin-386), type Statfs_t struct, Files uint64
  7721  pkg syscall (darwin-386), type Statfs_t struct, Flags uint32
  7722  pkg syscall (darwin-386), type Statfs_t struct, Fsid Fsid
  7723  pkg syscall (darwin-386), type Statfs_t struct, Fssubtype uint32
  7724  pkg syscall (darwin-386), type Statfs_t struct, Fstypename [16]int8
  7725  pkg syscall (darwin-386), type Statfs_t struct, Iosize int32
  7726  pkg syscall (darwin-386), type Statfs_t struct, Mntfromname [1024]int8
  7727  pkg syscall (darwin-386), type Statfs_t struct, Mntonname [1024]int8
  7728  pkg syscall (darwin-386), type Statfs_t struct, Owner uint32
  7729  pkg syscall (darwin-386), type Statfs_t struct, Reserved [8]uint32
  7730  pkg syscall (darwin-386), type Statfs_t struct, Type uint32
  7731  pkg syscall (darwin-386), type SysProcAttr struct, Chroot string
  7732  pkg syscall (darwin-386), type SysProcAttr struct, Credential *Credential
  7733  pkg syscall (darwin-386), type SysProcAttr struct, Noctty bool
  7734  pkg syscall (darwin-386), type SysProcAttr struct, Ptrace bool
  7735  pkg syscall (darwin-386), type SysProcAttr struct, Setctty bool
  7736  pkg syscall (darwin-386), type SysProcAttr struct, Setpgid bool
  7737  pkg syscall (darwin-386), type SysProcAttr struct, Setsid bool
  7738  pkg syscall (darwin-386), type Timespec struct, Nsec int32
  7739  pkg syscall (darwin-386), type Timespec struct, Sec int32
  7740  pkg syscall (darwin-386), type Timeval struct, Sec int32
  7741  pkg syscall (darwin-386), type Timeval struct, Usec int32
  7742  pkg syscall (darwin-386), type Timeval32 [0]uint8
  7743  pkg syscall (darwin-386), type WaitStatus uint32
  7744  pkg syscall (darwin-386), var Stderr int
  7745  pkg syscall (darwin-386), var Stdin int
  7746  pkg syscall (darwin-386), var Stdout int
  7747  pkg syscall (darwin-386-cgo), const AF_APPLETALK ideal-int
  7748  pkg syscall (darwin-386-cgo), const AF_CCITT ideal-int
  7749  pkg syscall (darwin-386-cgo), const AF_CHAOS ideal-int
  7750  pkg syscall (darwin-386-cgo), const AF_CNT ideal-int
  7751  pkg syscall (darwin-386-cgo), const AF_COIP ideal-int
  7752  pkg syscall (darwin-386-cgo), const AF_DATAKIT ideal-int
  7753  pkg syscall (darwin-386-cgo), const AF_DECnet ideal-int
  7754  pkg syscall (darwin-386-cgo), const AF_DLI ideal-int
  7755  pkg syscall (darwin-386-cgo), const AF_E164 ideal-int
  7756  pkg syscall (darwin-386-cgo), const AF_ECMA ideal-int
  7757  pkg syscall (darwin-386-cgo), const AF_HYLINK ideal-int
  7758  pkg syscall (darwin-386-cgo), const AF_IEEE80211 ideal-int
  7759  pkg syscall (darwin-386-cgo), const AF_IMPLINK ideal-int
  7760  pkg syscall (darwin-386-cgo), const AF_IPX ideal-int
  7761  pkg syscall (darwin-386-cgo), const AF_ISDN ideal-int
  7762  pkg syscall (darwin-386-cgo), const AF_ISO ideal-int
  7763  pkg syscall (darwin-386-cgo), const AF_LAT ideal-int
  7764  pkg syscall (darwin-386-cgo), const AF_LINK ideal-int
  7765  pkg syscall (darwin-386-cgo), const AF_LOCAL ideal-int
  7766  pkg syscall (darwin-386-cgo), const AF_MAX ideal-int
  7767  pkg syscall (darwin-386-cgo), const AF_NATM ideal-int
  7768  pkg syscall (darwin-386-cgo), const AF_NDRV ideal-int
  7769  pkg syscall (darwin-386-cgo), const AF_NETBIOS ideal-int
  7770  pkg syscall (darwin-386-cgo), const AF_NS ideal-int
  7771  pkg syscall (darwin-386-cgo), const AF_OSI ideal-int
  7772  pkg syscall (darwin-386-cgo), const AF_PPP ideal-int
  7773  pkg syscall (darwin-386-cgo), const AF_PUP ideal-int
  7774  pkg syscall (darwin-386-cgo), const AF_RESERVED_36 ideal-int
  7775  pkg syscall (darwin-386-cgo), const AF_ROUTE ideal-int
  7776  pkg syscall (darwin-386-cgo), const AF_SIP ideal-int
  7777  pkg syscall (darwin-386-cgo), const AF_SNA ideal-int
  7778  pkg syscall (darwin-386-cgo), const AF_SYSTEM ideal-int
  7779  pkg syscall (darwin-386-cgo), const BIOCFLUSH ideal-int
  7780  pkg syscall (darwin-386-cgo), const BIOCGBLEN ideal-int
  7781  pkg syscall (darwin-386-cgo), const BIOCGDLT ideal-int
  7782  pkg syscall (darwin-386-cgo), const BIOCGDLTLIST ideal-int
  7783  pkg syscall (darwin-386-cgo), const BIOCGETIF ideal-int
  7784  pkg syscall (darwin-386-cgo), const BIOCGHDRCMPLT ideal-int
  7785  pkg syscall (darwin-386-cgo), const BIOCGRSIG ideal-int
  7786  pkg syscall (darwin-386-cgo), const BIOCGRTIMEOUT ideal-int
  7787  pkg syscall (darwin-386-cgo), const BIOCGSEESENT ideal-int
  7788  pkg syscall (darwin-386-cgo), const BIOCGSTATS ideal-int
  7789  pkg syscall (darwin-386-cgo), const BIOCIMMEDIATE ideal-int
  7790  pkg syscall (darwin-386-cgo), const BIOCPROMISC ideal-int
  7791  pkg syscall (darwin-386-cgo), const BIOCSBLEN ideal-int
  7792  pkg syscall (darwin-386-cgo), const BIOCSDLT ideal-int
  7793  pkg syscall (darwin-386-cgo), const BIOCSETF ideal-int
  7794  pkg syscall (darwin-386-cgo), const BIOCSETIF ideal-int
  7795  pkg syscall (darwin-386-cgo), const BIOCSHDRCMPLT ideal-int
  7796  pkg syscall (darwin-386-cgo), const BIOCSRSIG ideal-int
  7797  pkg syscall (darwin-386-cgo), const BIOCSRTIMEOUT ideal-int
  7798  pkg syscall (darwin-386-cgo), const BIOCSSEESENT ideal-int
  7799  pkg syscall (darwin-386-cgo), const BIOCVERSION ideal-int
  7800  pkg syscall (darwin-386-cgo), const BPF_A ideal-int
  7801  pkg syscall (darwin-386-cgo), const BPF_ABS ideal-int
  7802  pkg syscall (darwin-386-cgo), const BPF_ADD ideal-int
  7803  pkg syscall (darwin-386-cgo), const BPF_ALIGNMENT ideal-int
  7804  pkg syscall (darwin-386-cgo), const BPF_ALU ideal-int
  7805  pkg syscall (darwin-386-cgo), const BPF_AND ideal-int
  7806  pkg syscall (darwin-386-cgo), const BPF_B ideal-int
  7807  pkg syscall (darwin-386-cgo), const BPF_DIV ideal-int
  7808  pkg syscall (darwin-386-cgo), const BPF_H ideal-int
  7809  pkg syscall (darwin-386-cgo), const BPF_IMM ideal-int
  7810  pkg syscall (darwin-386-cgo), const BPF_IND ideal-int
  7811  pkg syscall (darwin-386-cgo), const BPF_JA ideal-int
  7812  pkg syscall (darwin-386-cgo), const BPF_JEQ ideal-int
  7813  pkg syscall (darwin-386-cgo), const BPF_JGE ideal-int
  7814  pkg syscall (darwin-386-cgo), const BPF_JGT ideal-int
  7815  pkg syscall (darwin-386-cgo), const BPF_JMP ideal-int
  7816  pkg syscall (darwin-386-cgo), const BPF_JSET ideal-int
  7817  pkg syscall (darwin-386-cgo), const BPF_K ideal-int
  7818  pkg syscall (darwin-386-cgo), const BPF_LD ideal-int
  7819  pkg syscall (darwin-386-cgo), const BPF_LDX ideal-int
  7820  pkg syscall (darwin-386-cgo), const BPF_LEN ideal-int
  7821  pkg syscall (darwin-386-cgo), const BPF_LSH ideal-int
  7822  pkg syscall (darwin-386-cgo), const BPF_MAJOR_VERSION ideal-int
  7823  pkg syscall (darwin-386-cgo), const BPF_MAXBUFSIZE ideal-int
  7824  pkg syscall (darwin-386-cgo), const BPF_MAXINSNS ideal-int
  7825  pkg syscall (darwin-386-cgo), const BPF_MEM ideal-int
  7826  pkg syscall (darwin-386-cgo), const BPF_MEMWORDS ideal-int
  7827  pkg syscall (darwin-386-cgo), const BPF_MINBUFSIZE ideal-int
  7828  pkg syscall (darwin-386-cgo), const BPF_MINOR_VERSION ideal-int
  7829  pkg syscall (darwin-386-cgo), const BPF_MISC ideal-int
  7830  pkg syscall (darwin-386-cgo), const BPF_MSH ideal-int
  7831  pkg syscall (darwin-386-cgo), const BPF_MUL ideal-int
  7832  pkg syscall (darwin-386-cgo), const BPF_NEG ideal-int
  7833  pkg syscall (darwin-386-cgo), const BPF_OR ideal-int
  7834  pkg syscall (darwin-386-cgo), const BPF_RELEASE ideal-int
  7835  pkg syscall (darwin-386-cgo), const BPF_RET ideal-int
  7836  pkg syscall (darwin-386-cgo), const BPF_RSH ideal-int
  7837  pkg syscall (darwin-386-cgo), const BPF_ST ideal-int
  7838  pkg syscall (darwin-386-cgo), const BPF_STX ideal-int
  7839  pkg syscall (darwin-386-cgo), const BPF_SUB ideal-int
  7840  pkg syscall (darwin-386-cgo), const BPF_TAX ideal-int
  7841  pkg syscall (darwin-386-cgo), const BPF_TXA ideal-int
  7842  pkg syscall (darwin-386-cgo), const BPF_W ideal-int
  7843  pkg syscall (darwin-386-cgo), const BPF_X ideal-int
  7844  pkg syscall (darwin-386-cgo), const CTL_MAXNAME ideal-int
  7845  pkg syscall (darwin-386-cgo), const CTL_NET ideal-int
  7846  pkg syscall (darwin-386-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
  7847  pkg syscall (darwin-386-cgo), const DLT_ARCNET ideal-int
  7848  pkg syscall (darwin-386-cgo), const DLT_ATM_CLIP ideal-int
  7849  pkg syscall (darwin-386-cgo), const DLT_ATM_RFC1483 ideal-int
  7850  pkg syscall (darwin-386-cgo), const DLT_AX25 ideal-int
  7851  pkg syscall (darwin-386-cgo), const DLT_CHAOS ideal-int
  7852  pkg syscall (darwin-386-cgo), const DLT_CHDLC ideal-int
  7853  pkg syscall (darwin-386-cgo), const DLT_C_HDLC ideal-int
  7854  pkg syscall (darwin-386-cgo), const DLT_EN10MB ideal-int
  7855  pkg syscall (darwin-386-cgo), const DLT_EN3MB ideal-int
  7856  pkg syscall (darwin-386-cgo), const DLT_FDDI ideal-int
  7857  pkg syscall (darwin-386-cgo), const DLT_IEEE802 ideal-int
  7858  pkg syscall (darwin-386-cgo), const DLT_IEEE802_11 ideal-int
  7859  pkg syscall (darwin-386-cgo), const DLT_IEEE802_11_RADIO ideal-int
  7860  pkg syscall (darwin-386-cgo), const DLT_IEEE802_11_RADIO_AVS ideal-int
  7861  pkg syscall (darwin-386-cgo), const DLT_LINUX_SLL ideal-int
  7862  pkg syscall (darwin-386-cgo), const DLT_LOOP ideal-int
  7863  pkg syscall (darwin-386-cgo), const DLT_NULL ideal-int
  7864  pkg syscall (darwin-386-cgo), const DLT_PFLOG ideal-int
  7865  pkg syscall (darwin-386-cgo), const DLT_PFSYNC ideal-int
  7866  pkg syscall (darwin-386-cgo), const DLT_PPP ideal-int
  7867  pkg syscall (darwin-386-cgo), const DLT_PPP_BSDOS ideal-int
  7868  pkg syscall (darwin-386-cgo), const DLT_PPP_SERIAL ideal-int
  7869  pkg syscall (darwin-386-cgo), const DLT_PRONET ideal-int
  7870  pkg syscall (darwin-386-cgo), const DLT_RAW ideal-int
  7871  pkg syscall (darwin-386-cgo), const DLT_SLIP ideal-int
  7872  pkg syscall (darwin-386-cgo), const DLT_SLIP_BSDOS ideal-int
  7873  pkg syscall (darwin-386-cgo), const DT_BLK ideal-int
  7874  pkg syscall (darwin-386-cgo), const DT_CHR ideal-int
  7875  pkg syscall (darwin-386-cgo), const DT_DIR ideal-int
  7876  pkg syscall (darwin-386-cgo), const DT_FIFO ideal-int
  7877  pkg syscall (darwin-386-cgo), const DT_LNK ideal-int
  7878  pkg syscall (darwin-386-cgo), const DT_REG ideal-int
  7879  pkg syscall (darwin-386-cgo), const DT_SOCK ideal-int
  7880  pkg syscall (darwin-386-cgo), const DT_UNKNOWN ideal-int
  7881  pkg syscall (darwin-386-cgo), const DT_WHT ideal-int
  7882  pkg syscall (darwin-386-cgo), const EAUTH Errno
  7883  pkg syscall (darwin-386-cgo), const EBADARCH Errno
  7884  pkg syscall (darwin-386-cgo), const EBADEXEC Errno
  7885  pkg syscall (darwin-386-cgo), const EBADMACHO Errno
  7886  pkg syscall (darwin-386-cgo), const EBADMSG Errno
  7887  pkg syscall (darwin-386-cgo), const EBADRPC Errno
  7888  pkg syscall (darwin-386-cgo), const ECHO ideal-int
  7889  pkg syscall (darwin-386-cgo), const ECHOCTL ideal-int
  7890  pkg syscall (darwin-386-cgo), const ECHOE ideal-int
  7891  pkg syscall (darwin-386-cgo), const ECHOK ideal-int
  7892  pkg syscall (darwin-386-cgo), const ECHOKE ideal-int
  7893  pkg syscall (darwin-386-cgo), const ECHONL ideal-int
  7894  pkg syscall (darwin-386-cgo), const ECHOPRT ideal-int
  7895  pkg syscall (darwin-386-cgo), const EDEVERR Errno
  7896  pkg syscall (darwin-386-cgo), const EFTYPE Errno
  7897  pkg syscall (darwin-386-cgo), const ELAST Errno
  7898  pkg syscall (darwin-386-cgo), const EMULTIHOP Errno
  7899  pkg syscall (darwin-386-cgo), const ENEEDAUTH Errno
  7900  pkg syscall (darwin-386-cgo), const ENOATTR Errno
  7901  pkg syscall (darwin-386-cgo), const ENODATA Errno
  7902  pkg syscall (darwin-386-cgo), const ENOLINK Errno
  7903  pkg syscall (darwin-386-cgo), const ENOPOLICY Errno
  7904  pkg syscall (darwin-386-cgo), const ENOSR Errno
  7905  pkg syscall (darwin-386-cgo), const ENOSTR Errno
  7906  pkg syscall (darwin-386-cgo), const ENOTRECOVERABLE Errno
  7907  pkg syscall (darwin-386-cgo), const EOWNERDEAD Errno
  7908  pkg syscall (darwin-386-cgo), const EPROCLIM Errno
  7909  pkg syscall (darwin-386-cgo), const EPROCUNAVAIL Errno
  7910  pkg syscall (darwin-386-cgo), const EPROGMISMATCH Errno
  7911  pkg syscall (darwin-386-cgo), const EPROGUNAVAIL Errno
  7912  pkg syscall (darwin-386-cgo), const EPROTO Errno
  7913  pkg syscall (darwin-386-cgo), const EPWROFF Errno
  7914  pkg syscall (darwin-386-cgo), const ERPCMISMATCH Errno
  7915  pkg syscall (darwin-386-cgo), const ESHLIBVERS Errno
  7916  pkg syscall (darwin-386-cgo), const ETIME Errno
  7917  pkg syscall (darwin-386-cgo), const EVFILT_AIO ideal-int
  7918  pkg syscall (darwin-386-cgo), const EVFILT_FS ideal-int
  7919  pkg syscall (darwin-386-cgo), const EVFILT_MACHPORT ideal-int
  7920  pkg syscall (darwin-386-cgo), const EVFILT_PROC ideal-int
  7921  pkg syscall (darwin-386-cgo), const EVFILT_READ ideal-int
  7922  pkg syscall (darwin-386-cgo), const EVFILT_SIGNAL ideal-int
  7923  pkg syscall (darwin-386-cgo), const EVFILT_SYSCOUNT ideal-int
  7924  pkg syscall (darwin-386-cgo), const EVFILT_THREADMARKER ideal-int
  7925  pkg syscall (darwin-386-cgo), const EVFILT_TIMER ideal-int
  7926  pkg syscall (darwin-386-cgo), const EVFILT_USER ideal-int
  7927  pkg syscall (darwin-386-cgo), const EVFILT_VM ideal-int
  7928  pkg syscall (darwin-386-cgo), const EVFILT_VNODE ideal-int
  7929  pkg syscall (darwin-386-cgo), const EVFILT_WRITE ideal-int
  7930  pkg syscall (darwin-386-cgo), const EV_ADD ideal-int
  7931  pkg syscall (darwin-386-cgo), const EV_CLEAR ideal-int
  7932  pkg syscall (darwin-386-cgo), const EV_DELETE ideal-int
  7933  pkg syscall (darwin-386-cgo), const EV_DISABLE ideal-int
  7934  pkg syscall (darwin-386-cgo), const EV_DISPATCH ideal-int
  7935  pkg syscall (darwin-386-cgo), const EV_ENABLE ideal-int
  7936  pkg syscall (darwin-386-cgo), const EV_EOF ideal-int
  7937  pkg syscall (darwin-386-cgo), const EV_ERROR ideal-int
  7938  pkg syscall (darwin-386-cgo), const EV_FLAG0 ideal-int
  7939  pkg syscall (darwin-386-cgo), const EV_FLAG1 ideal-int
  7940  pkg syscall (darwin-386-cgo), const EV_ONESHOT ideal-int
  7941  pkg syscall (darwin-386-cgo), const EV_OOBAND ideal-int
  7942  pkg syscall (darwin-386-cgo), const EV_POLL ideal-int
  7943  pkg syscall (darwin-386-cgo), const EV_RECEIPT ideal-int
  7944  pkg syscall (darwin-386-cgo), const EV_SYSFLAGS ideal-int
  7945  pkg syscall (darwin-386-cgo), const EXTA ideal-int
  7946  pkg syscall (darwin-386-cgo), const EXTB ideal-int
  7947  pkg syscall (darwin-386-cgo), const EXTPROC ideal-int
  7948  pkg syscall (darwin-386-cgo), const FD_CLOEXEC ideal-int
  7949  pkg syscall (darwin-386-cgo), const FD_SETSIZE ideal-int
  7950  pkg syscall (darwin-386-cgo), const F_ADDFILESIGS ideal-int
  7951  pkg syscall (darwin-386-cgo), const F_ADDSIGS ideal-int
  7952  pkg syscall (darwin-386-cgo), const F_ALLOCATEALL ideal-int
  7953  pkg syscall (darwin-386-cgo), const F_ALLOCATECONTIG ideal-int
  7954  pkg syscall (darwin-386-cgo), const F_CHKCLEAN ideal-int
  7955  pkg syscall (darwin-386-cgo), const F_DUPFD ideal-int
  7956  pkg syscall (darwin-386-cgo), const F_DUPFD_CLOEXEC ideal-int
  7957  pkg syscall (darwin-386-cgo), const F_FLUSH_DATA ideal-int
  7958  pkg syscall (darwin-386-cgo), const F_FREEZE_FS ideal-int
  7959  pkg syscall (darwin-386-cgo), const F_FULLFSYNC ideal-int
  7960  pkg syscall (darwin-386-cgo), const F_GETFD ideal-int
  7961  pkg syscall (darwin-386-cgo), const F_GETFL ideal-int
  7962  pkg syscall (darwin-386-cgo), const F_GETLK ideal-int
  7963  pkg syscall (darwin-386-cgo), const F_GETLKPID ideal-int
  7964  pkg syscall (darwin-386-cgo), const F_GETNOSIGPIPE ideal-int
  7965  pkg syscall (darwin-386-cgo), const F_GETOWN ideal-int
  7966  pkg syscall (darwin-386-cgo), const F_GETPATH ideal-int
  7967  pkg syscall (darwin-386-cgo), const F_GETPATH_MTMINFO ideal-int
  7968  pkg syscall (darwin-386-cgo), const F_GETPROTECTIONCLASS ideal-int
  7969  pkg syscall (darwin-386-cgo), const F_GLOBAL_NOCACHE ideal-int
  7970  pkg syscall (darwin-386-cgo), const F_LOG2PHYS ideal-int
  7971  pkg syscall (darwin-386-cgo), const F_LOG2PHYS_EXT ideal-int
  7972  pkg syscall (darwin-386-cgo), const F_MARKDEPENDENCY ideal-int
  7973  pkg syscall (darwin-386-cgo), const F_NOCACHE ideal-int
  7974  pkg syscall (darwin-386-cgo), const F_NODIRECT ideal-int
  7975  pkg syscall (darwin-386-cgo), const F_OK ideal-int
  7976  pkg syscall (darwin-386-cgo), const F_PATHPKG_CHECK ideal-int
  7977  pkg syscall (darwin-386-cgo), const F_PEOFPOSMODE ideal-int
  7978  pkg syscall (darwin-386-cgo), const F_PREALLOCATE ideal-int
  7979  pkg syscall (darwin-386-cgo), const F_RDADVISE ideal-int
  7980  pkg syscall (darwin-386-cgo), const F_RDAHEAD ideal-int
  7981  pkg syscall (darwin-386-cgo), const F_RDLCK ideal-int
  7982  pkg syscall (darwin-386-cgo), const F_READBOOTSTRAP ideal-int
  7983  pkg syscall (darwin-386-cgo), const F_SETBACKINGSTORE ideal-int
  7984  pkg syscall (darwin-386-cgo), const F_SETFD ideal-int
  7985  pkg syscall (darwin-386-cgo), const F_SETFL ideal-int
  7986  pkg syscall (darwin-386-cgo), const F_SETLK ideal-int
  7987  pkg syscall (darwin-386-cgo), const F_SETLKW ideal-int
  7988  pkg syscall (darwin-386-cgo), const F_SETNOSIGPIPE ideal-int
  7989  pkg syscall (darwin-386-cgo), const F_SETOWN ideal-int
  7990  pkg syscall (darwin-386-cgo), const F_SETPROTECTIONCLASS ideal-int
  7991  pkg syscall (darwin-386-cgo), const F_SETSIZE ideal-int
  7992  pkg syscall (darwin-386-cgo), const F_THAW_FS ideal-int
  7993  pkg syscall (darwin-386-cgo), const F_UNLCK ideal-int
  7994  pkg syscall (darwin-386-cgo), const F_VOLPOSMODE ideal-int
  7995  pkg syscall (darwin-386-cgo), const F_WRITEBOOTSTRAP ideal-int
  7996  pkg syscall (darwin-386-cgo), const F_WRLCK ideal-int
  7997  pkg syscall (darwin-386-cgo), const IFF_ALLMULTI ideal-int
  7998  pkg syscall (darwin-386-cgo), const IFF_ALTPHYS ideal-int
  7999  pkg syscall (darwin-386-cgo), const IFF_DEBUG ideal-int
  8000  pkg syscall (darwin-386-cgo), const IFF_LINK0 ideal-int
  8001  pkg syscall (darwin-386-cgo), const IFF_LINK1 ideal-int
  8002  pkg syscall (darwin-386-cgo), const IFF_LINK2 ideal-int
  8003  pkg syscall (darwin-386-cgo), const IFF_NOARP ideal-int
  8004  pkg syscall (darwin-386-cgo), const IFF_NOTRAILERS ideal-int
  8005  pkg syscall (darwin-386-cgo), const IFF_OACTIVE ideal-int
  8006  pkg syscall (darwin-386-cgo), const IFF_POINTOPOINT ideal-int
  8007  pkg syscall (darwin-386-cgo), const IFF_PROMISC ideal-int
  8008  pkg syscall (darwin-386-cgo), const IFF_RUNNING ideal-int
  8009  pkg syscall (darwin-386-cgo), const IFF_SIMPLEX ideal-int
  8010  pkg syscall (darwin-386-cgo), const IFNAMSIZ ideal-int
  8011  pkg syscall (darwin-386-cgo), const IFT_1822 ideal-int
  8012  pkg syscall (darwin-386-cgo), const IFT_AAL5 ideal-int
  8013  pkg syscall (darwin-386-cgo), const IFT_ARCNET ideal-int
  8014  pkg syscall (darwin-386-cgo), const IFT_ARCNETPLUS ideal-int
  8015  pkg syscall (darwin-386-cgo), const IFT_ATM ideal-int
  8016  pkg syscall (darwin-386-cgo), const IFT_BRIDGE ideal-int
  8017  pkg syscall (darwin-386-cgo), const IFT_CARP ideal-int
  8018  pkg syscall (darwin-386-cgo), const IFT_CELLULAR ideal-int
  8019  pkg syscall (darwin-386-cgo), const IFT_CEPT ideal-int
  8020  pkg syscall (darwin-386-cgo), const IFT_DS3 ideal-int
  8021  pkg syscall (darwin-386-cgo), const IFT_ENC ideal-int
  8022  pkg syscall (darwin-386-cgo), const IFT_EON ideal-int
  8023  pkg syscall (darwin-386-cgo), const IFT_ETHER ideal-int
  8024  pkg syscall (darwin-386-cgo), const IFT_FAITH ideal-int
  8025  pkg syscall (darwin-386-cgo), const IFT_FDDI ideal-int
  8026  pkg syscall (darwin-386-cgo), const IFT_FRELAY ideal-int
  8027  pkg syscall (darwin-386-cgo), const IFT_FRELAYDCE ideal-int
  8028  pkg syscall (darwin-386-cgo), const IFT_GIF ideal-int
  8029  pkg syscall (darwin-386-cgo), const IFT_HDH1822 ideal-int
  8030  pkg syscall (darwin-386-cgo), const IFT_HIPPI ideal-int
  8031  pkg syscall (darwin-386-cgo), const IFT_HSSI ideal-int
  8032  pkg syscall (darwin-386-cgo), const IFT_HY ideal-int
  8033  pkg syscall (darwin-386-cgo), const IFT_IEEE1394 ideal-int
  8034  pkg syscall (darwin-386-cgo), const IFT_IEEE8023ADLAG ideal-int
  8035  pkg syscall (darwin-386-cgo), const IFT_ISDNBASIC ideal-int
  8036  pkg syscall (darwin-386-cgo), const IFT_ISDNPRIMARY ideal-int
  8037  pkg syscall (darwin-386-cgo), const IFT_ISO88022LLC ideal-int
  8038  pkg syscall (darwin-386-cgo), const IFT_ISO88023 ideal-int
  8039  pkg syscall (darwin-386-cgo), const IFT_ISO88024 ideal-int
  8040  pkg syscall (darwin-386-cgo), const IFT_ISO88025 ideal-int
  8041  pkg syscall (darwin-386-cgo), const IFT_ISO88026 ideal-int
  8042  pkg syscall (darwin-386-cgo), const IFT_L2VLAN ideal-int
  8043  pkg syscall (darwin-386-cgo), const IFT_LAPB ideal-int
  8044  pkg syscall (darwin-386-cgo), const IFT_LOCALTALK ideal-int
  8045  pkg syscall (darwin-386-cgo), const IFT_LOOP ideal-int
  8046  pkg syscall (darwin-386-cgo), const IFT_MIOX25 ideal-int
  8047  pkg syscall (darwin-386-cgo), const IFT_MODEM ideal-int
  8048  pkg syscall (darwin-386-cgo), const IFT_NSIP ideal-int
  8049  pkg syscall (darwin-386-cgo), const IFT_OTHER ideal-int
  8050  pkg syscall (darwin-386-cgo), const IFT_P10 ideal-int
  8051  pkg syscall (darwin-386-cgo), const IFT_P80 ideal-int
  8052  pkg syscall (darwin-386-cgo), const IFT_PARA ideal-int
  8053  pkg syscall (darwin-386-cgo), const IFT_PDP ideal-int
  8054  pkg syscall (darwin-386-cgo), const IFT_PFLOG ideal-int
  8055  pkg syscall (darwin-386-cgo), const IFT_PFSYNC ideal-int
  8056  pkg syscall (darwin-386-cgo), const IFT_PPP ideal-int
  8057  pkg syscall (darwin-386-cgo), const IFT_PROPMUX ideal-int
  8058  pkg syscall (darwin-386-cgo), const IFT_PROPVIRTUAL ideal-int
  8059  pkg syscall (darwin-386-cgo), const IFT_PTPSERIAL ideal-int
  8060  pkg syscall (darwin-386-cgo), const IFT_RS232 ideal-int
  8061  pkg syscall (darwin-386-cgo), const IFT_SDLC ideal-int
  8062  pkg syscall (darwin-386-cgo), const IFT_SIP ideal-int
  8063  pkg syscall (darwin-386-cgo), const IFT_SLIP ideal-int
  8064  pkg syscall (darwin-386-cgo), const IFT_SMDSDXI ideal-int
  8065  pkg syscall (darwin-386-cgo), const IFT_SMDSICIP ideal-int
  8066  pkg syscall (darwin-386-cgo), const IFT_SONET ideal-int
  8067  pkg syscall (darwin-386-cgo), const IFT_SONETPATH ideal-int
  8068  pkg syscall (darwin-386-cgo), const IFT_SONETVT ideal-int
  8069  pkg syscall (darwin-386-cgo), const IFT_STARLAN ideal-int
  8070  pkg syscall (darwin-386-cgo), const IFT_STF ideal-int
  8071  pkg syscall (darwin-386-cgo), const IFT_T1 ideal-int
  8072  pkg syscall (darwin-386-cgo), const IFT_ULTRA ideal-int
  8073  pkg syscall (darwin-386-cgo), const IFT_V35 ideal-int
  8074  pkg syscall (darwin-386-cgo), const IFT_X25 ideal-int
  8075  pkg syscall (darwin-386-cgo), const IFT_X25DDN ideal-int
  8076  pkg syscall (darwin-386-cgo), const IFT_X25PLE ideal-int
  8077  pkg syscall (darwin-386-cgo), const IFT_XETHER ideal-int
  8078  pkg syscall (darwin-386-cgo), const IN_CLASSA_HOST ideal-int
  8079  pkg syscall (darwin-386-cgo), const IN_CLASSA_MAX ideal-int
  8080  pkg syscall (darwin-386-cgo), const IN_CLASSA_NET ideal-int
  8081  pkg syscall (darwin-386-cgo), const IN_CLASSA_NSHIFT ideal-int
  8082  pkg syscall (darwin-386-cgo), const IN_CLASSB_HOST ideal-int
  8083  pkg syscall (darwin-386-cgo), const IN_CLASSB_MAX ideal-int
  8084  pkg syscall (darwin-386-cgo), const IN_CLASSB_NET ideal-int
  8085  pkg syscall (darwin-386-cgo), const IN_CLASSB_NSHIFT ideal-int
  8086  pkg syscall (darwin-386-cgo), const IN_CLASSC_HOST ideal-int
  8087  pkg syscall (darwin-386-cgo), const IN_CLASSC_NET ideal-int
  8088  pkg syscall (darwin-386-cgo), const IN_CLASSC_NSHIFT ideal-int
  8089  pkg syscall (darwin-386-cgo), const IN_CLASSD_HOST ideal-int
  8090  pkg syscall (darwin-386-cgo), const IN_CLASSD_NET ideal-int
  8091  pkg syscall (darwin-386-cgo), const IN_CLASSD_NSHIFT ideal-int
  8092  pkg syscall (darwin-386-cgo), const IN_LINKLOCALNETNUM ideal-int
  8093  pkg syscall (darwin-386-cgo), const IN_LOOPBACKNET ideal-int
  8094  pkg syscall (darwin-386-cgo), const IPPROTO_3PC ideal-int
  8095  pkg syscall (darwin-386-cgo), const IPPROTO_ADFS ideal-int
  8096  pkg syscall (darwin-386-cgo), const IPPROTO_AH ideal-int
  8097  pkg syscall (darwin-386-cgo), const IPPROTO_AHIP ideal-int
  8098  pkg syscall (darwin-386-cgo), const IPPROTO_APES ideal-int
  8099  pkg syscall (darwin-386-cgo), const IPPROTO_ARGUS ideal-int
  8100  pkg syscall (darwin-386-cgo), const IPPROTO_AX25 ideal-int
  8101  pkg syscall (darwin-386-cgo), const IPPROTO_BHA ideal-int
  8102  pkg syscall (darwin-386-cgo), const IPPROTO_BLT ideal-int
  8103  pkg syscall (darwin-386-cgo), const IPPROTO_BRSATMON ideal-int
  8104  pkg syscall (darwin-386-cgo), const IPPROTO_CFTP ideal-int
  8105  pkg syscall (darwin-386-cgo), const IPPROTO_CHAOS ideal-int
  8106  pkg syscall (darwin-386-cgo), const IPPROTO_CMTP ideal-int
  8107  pkg syscall (darwin-386-cgo), const IPPROTO_CPHB ideal-int
  8108  pkg syscall (darwin-386-cgo), const IPPROTO_CPNX ideal-int
  8109  pkg syscall (darwin-386-cgo), const IPPROTO_DDP ideal-int
  8110  pkg syscall (darwin-386-cgo), const IPPROTO_DGP ideal-int
  8111  pkg syscall (darwin-386-cgo), const IPPROTO_DIVERT ideal-int
  8112  pkg syscall (darwin-386-cgo), const IPPROTO_DONE ideal-int
  8113  pkg syscall (darwin-386-cgo), const IPPROTO_DSTOPTS ideal-int
  8114  pkg syscall (darwin-386-cgo), const IPPROTO_EGP ideal-int
  8115  pkg syscall (darwin-386-cgo), const IPPROTO_EMCON ideal-int
  8116  pkg syscall (darwin-386-cgo), const IPPROTO_ENCAP ideal-int
  8117  pkg syscall (darwin-386-cgo), const IPPROTO_EON ideal-int
  8118  pkg syscall (darwin-386-cgo), const IPPROTO_ESP ideal-int
  8119  pkg syscall (darwin-386-cgo), const IPPROTO_ETHERIP ideal-int
  8120  pkg syscall (darwin-386-cgo), const IPPROTO_FRAGMENT ideal-int
  8121  pkg syscall (darwin-386-cgo), const IPPROTO_GGP ideal-int
  8122  pkg syscall (darwin-386-cgo), const IPPROTO_GMTP ideal-int
  8123  pkg syscall (darwin-386-cgo), const IPPROTO_GRE ideal-int
  8124  pkg syscall (darwin-386-cgo), const IPPROTO_HELLO ideal-int
  8125  pkg syscall (darwin-386-cgo), const IPPROTO_HMP ideal-int
  8126  pkg syscall (darwin-386-cgo), const IPPROTO_HOPOPTS ideal-int
  8127  pkg syscall (darwin-386-cgo), const IPPROTO_ICMP ideal-int
  8128  pkg syscall (darwin-386-cgo), const IPPROTO_ICMPV6 ideal-int
  8129  pkg syscall (darwin-386-cgo), const IPPROTO_IDP ideal-int
  8130  pkg syscall (darwin-386-cgo), const IPPROTO_IDPR ideal-int
  8131  pkg syscall (darwin-386-cgo), const IPPROTO_IDRP ideal-int
  8132  pkg syscall (darwin-386-cgo), const IPPROTO_IGMP ideal-int
  8133  pkg syscall (darwin-386-cgo), const IPPROTO_IGP ideal-int
  8134  pkg syscall (darwin-386-cgo), const IPPROTO_IGRP ideal-int
  8135  pkg syscall (darwin-386-cgo), const IPPROTO_IL ideal-int
  8136  pkg syscall (darwin-386-cgo), const IPPROTO_INLSP ideal-int
  8137  pkg syscall (darwin-386-cgo), const IPPROTO_INP ideal-int
  8138  pkg syscall (darwin-386-cgo), const IPPROTO_IPCOMP ideal-int
  8139  pkg syscall (darwin-386-cgo), const IPPROTO_IPCV ideal-int
  8140  pkg syscall (darwin-386-cgo), const IPPROTO_IPEIP ideal-int
  8141  pkg syscall (darwin-386-cgo), const IPPROTO_IPIP ideal-int
  8142  pkg syscall (darwin-386-cgo), const IPPROTO_IPPC ideal-int
  8143  pkg syscall (darwin-386-cgo), const IPPROTO_IPV4 ideal-int
  8144  pkg syscall (darwin-386-cgo), const IPPROTO_IRTP ideal-int
  8145  pkg syscall (darwin-386-cgo), const IPPROTO_KRYPTOLAN ideal-int
  8146  pkg syscall (darwin-386-cgo), const IPPROTO_LARP ideal-int
  8147  pkg syscall (darwin-386-cgo), const IPPROTO_LEAF1 ideal-int
  8148  pkg syscall (darwin-386-cgo), const IPPROTO_LEAF2 ideal-int
  8149  pkg syscall (darwin-386-cgo), const IPPROTO_MAX ideal-int
  8150  pkg syscall (darwin-386-cgo), const IPPROTO_MAXID ideal-int
  8151  pkg syscall (darwin-386-cgo), const IPPROTO_MEAS ideal-int
  8152  pkg syscall (darwin-386-cgo), const IPPROTO_MHRP ideal-int
  8153  pkg syscall (darwin-386-cgo), const IPPROTO_MICP ideal-int
  8154  pkg syscall (darwin-386-cgo), const IPPROTO_MTP ideal-int
  8155  pkg syscall (darwin-386-cgo), const IPPROTO_MUX ideal-int
  8156  pkg syscall (darwin-386-cgo), const IPPROTO_ND ideal-int
  8157  pkg syscall (darwin-386-cgo), const IPPROTO_NHRP ideal-int
  8158  pkg syscall (darwin-386-cgo), const IPPROTO_NONE ideal-int
  8159  pkg syscall (darwin-386-cgo), const IPPROTO_NSP ideal-int
  8160  pkg syscall (darwin-386-cgo), const IPPROTO_NVPII ideal-int
  8161  pkg syscall (darwin-386-cgo), const IPPROTO_OSPFIGP ideal-int
  8162  pkg syscall (darwin-386-cgo), const IPPROTO_PGM ideal-int
  8163  pkg syscall (darwin-386-cgo), const IPPROTO_PIGP ideal-int
  8164  pkg syscall (darwin-386-cgo), const IPPROTO_PIM ideal-int
  8165  pkg syscall (darwin-386-cgo), const IPPROTO_PRM ideal-int
  8166  pkg syscall (darwin-386-cgo), const IPPROTO_PUP ideal-int
  8167  pkg syscall (darwin-386-cgo), const IPPROTO_PVP ideal-int
  8168  pkg syscall (darwin-386-cgo), const IPPROTO_RAW ideal-int
  8169  pkg syscall (darwin-386-cgo), const IPPROTO_RCCMON ideal-int
  8170  pkg syscall (darwin-386-cgo), const IPPROTO_RDP ideal-int
  8171  pkg syscall (darwin-386-cgo), const IPPROTO_ROUTING ideal-int
  8172  pkg syscall (darwin-386-cgo), const IPPROTO_RSVP ideal-int
  8173  pkg syscall (darwin-386-cgo), const IPPROTO_RVD ideal-int
  8174  pkg syscall (darwin-386-cgo), const IPPROTO_SATEXPAK ideal-int
  8175  pkg syscall (darwin-386-cgo), const IPPROTO_SATMON ideal-int
  8176  pkg syscall (darwin-386-cgo), const IPPROTO_SCCSP ideal-int
  8177  pkg syscall (darwin-386-cgo), const IPPROTO_SCTP ideal-int
  8178  pkg syscall (darwin-386-cgo), const IPPROTO_SDRP ideal-int
  8179  pkg syscall (darwin-386-cgo), const IPPROTO_SEP ideal-int
  8180  pkg syscall (darwin-386-cgo), const IPPROTO_SRPC ideal-int
  8181  pkg syscall (darwin-386-cgo), const IPPROTO_ST ideal-int
  8182  pkg syscall (darwin-386-cgo), const IPPROTO_SVMTP ideal-int
  8183  pkg syscall (darwin-386-cgo), const IPPROTO_SWIPE ideal-int
  8184  pkg syscall (darwin-386-cgo), const IPPROTO_TCF ideal-int
  8185  pkg syscall (darwin-386-cgo), const IPPROTO_TP ideal-int
  8186  pkg syscall (darwin-386-cgo), const IPPROTO_TPXX ideal-int
  8187  pkg syscall (darwin-386-cgo), const IPPROTO_TRUNK1 ideal-int
  8188  pkg syscall (darwin-386-cgo), const IPPROTO_TRUNK2 ideal-int
  8189  pkg syscall (darwin-386-cgo), const IPPROTO_TTP ideal-int
  8190  pkg syscall (darwin-386-cgo), const IPPROTO_VINES ideal-int
  8191  pkg syscall (darwin-386-cgo), const IPPROTO_VISA ideal-int
  8192  pkg syscall (darwin-386-cgo), const IPPROTO_VMTP ideal-int
  8193  pkg syscall (darwin-386-cgo), const IPPROTO_WBEXPAK ideal-int
  8194  pkg syscall (darwin-386-cgo), const IPPROTO_WBMON ideal-int
  8195  pkg syscall (darwin-386-cgo), const IPPROTO_WSN ideal-int
  8196  pkg syscall (darwin-386-cgo), const IPPROTO_XNET ideal-int
  8197  pkg syscall (darwin-386-cgo), const IPPROTO_XTP ideal-int
  8198  pkg syscall (darwin-386-cgo), const IPV6_2292DSTOPTS ideal-int
  8199  pkg syscall (darwin-386-cgo), const IPV6_2292HOPLIMIT ideal-int
  8200  pkg syscall (darwin-386-cgo), const IPV6_2292HOPOPTS ideal-int
  8201  pkg syscall (darwin-386-cgo), const IPV6_2292NEXTHOP ideal-int
  8202  pkg syscall (darwin-386-cgo), const IPV6_2292PKTINFO ideal-int
  8203  pkg syscall (darwin-386-cgo), const IPV6_2292PKTOPTIONS ideal-int
  8204  pkg syscall (darwin-386-cgo), const IPV6_2292RTHDR ideal-int
  8205  pkg syscall (darwin-386-cgo), const IPV6_BINDV6ONLY ideal-int
  8206  pkg syscall (darwin-386-cgo), const IPV6_BOUND_IF ideal-int
  8207  pkg syscall (darwin-386-cgo), const IPV6_CHECKSUM ideal-int
  8208  pkg syscall (darwin-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
  8209  pkg syscall (darwin-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
  8210  pkg syscall (darwin-386-cgo), const IPV6_DEFHLIM ideal-int
  8211  pkg syscall (darwin-386-cgo), const IPV6_FAITH ideal-int
  8212  pkg syscall (darwin-386-cgo), const IPV6_FLOWINFO_MASK ideal-int
  8213  pkg syscall (darwin-386-cgo), const IPV6_FLOWLABEL_MASK ideal-int
  8214  pkg syscall (darwin-386-cgo), const IPV6_FRAGTTL ideal-int
  8215  pkg syscall (darwin-386-cgo), const IPV6_FW_ADD ideal-int
  8216  pkg syscall (darwin-386-cgo), const IPV6_FW_DEL ideal-int
  8217  pkg syscall (darwin-386-cgo), const IPV6_FW_FLUSH ideal-int
  8218  pkg syscall (darwin-386-cgo), const IPV6_FW_GET ideal-int
  8219  pkg syscall (darwin-386-cgo), const IPV6_FW_ZERO ideal-int
  8220  pkg syscall (darwin-386-cgo), const IPV6_HLIMDEC ideal-int
  8221  pkg syscall (darwin-386-cgo), const IPV6_IPSEC_POLICY ideal-int
  8222  pkg syscall (darwin-386-cgo), const IPV6_MAXHLIM ideal-int
  8223  pkg syscall (darwin-386-cgo), const IPV6_MAXOPTHDR ideal-int
  8224  pkg syscall (darwin-386-cgo), const IPV6_MAXPACKET ideal-int
  8225  pkg syscall (darwin-386-cgo), const IPV6_MAX_GROUP_SRC_FILTER ideal-int
  8226  pkg syscall (darwin-386-cgo), const IPV6_MAX_MEMBERSHIPS ideal-int
  8227  pkg syscall (darwin-386-cgo), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
  8228  pkg syscall (darwin-386-cgo), const IPV6_MIN_MEMBERSHIPS ideal-int
  8229  pkg syscall (darwin-386-cgo), const IPV6_MMTU ideal-int
  8230  pkg syscall (darwin-386-cgo), const IPV6_PORTRANGE ideal-int
  8231  pkg syscall (darwin-386-cgo), const IPV6_PORTRANGE_DEFAULT ideal-int
  8232  pkg syscall (darwin-386-cgo), const IPV6_PORTRANGE_HIGH ideal-int
  8233  pkg syscall (darwin-386-cgo), const IPV6_PORTRANGE_LOW ideal-int
  8234  pkg syscall (darwin-386-cgo), const IPV6_RECVTCLASS ideal-int
  8235  pkg syscall (darwin-386-cgo), const IPV6_RTHDR_LOOSE ideal-int
  8236  pkg syscall (darwin-386-cgo), const IPV6_RTHDR_STRICT ideal-int
  8237  pkg syscall (darwin-386-cgo), const IPV6_RTHDR_TYPE_0 ideal-int
  8238  pkg syscall (darwin-386-cgo), const IPV6_SOCKOPT_RESERVED1 ideal-int
  8239  pkg syscall (darwin-386-cgo), const IPV6_TCLASS ideal-int
  8240  pkg syscall (darwin-386-cgo), const IPV6_VERSION ideal-int
  8241  pkg syscall (darwin-386-cgo), const IPV6_VERSION_MASK ideal-int
  8242  pkg syscall (darwin-386-cgo), const IP_ADD_SOURCE_MEMBERSHIP ideal-int
  8243  pkg syscall (darwin-386-cgo), const IP_BLOCK_SOURCE ideal-int
  8244  pkg syscall (darwin-386-cgo), const IP_BOUND_IF ideal-int
  8245  pkg syscall (darwin-386-cgo), const IP_DEFAULT_MULTICAST_LOOP ideal-int
  8246  pkg syscall (darwin-386-cgo), const IP_DEFAULT_MULTICAST_TTL ideal-int
  8247  pkg syscall (darwin-386-cgo), const IP_DF ideal-int
  8248  pkg syscall (darwin-386-cgo), const IP_DROP_SOURCE_MEMBERSHIP ideal-int
  8249  pkg syscall (darwin-386-cgo), const IP_DUMMYNET_CONFIGURE ideal-int
  8250  pkg syscall (darwin-386-cgo), const IP_DUMMYNET_DEL ideal-int
  8251  pkg syscall (darwin-386-cgo), const IP_DUMMYNET_FLUSH ideal-int
  8252  pkg syscall (darwin-386-cgo), const IP_DUMMYNET_GET ideal-int
  8253  pkg syscall (darwin-386-cgo), const IP_FAITH ideal-int
  8254  pkg syscall (darwin-386-cgo), const IP_FW_ADD ideal-int
  8255  pkg syscall (darwin-386-cgo), const IP_FW_DEL ideal-int
  8256  pkg syscall (darwin-386-cgo), const IP_FW_FLUSH ideal-int
  8257  pkg syscall (darwin-386-cgo), const IP_FW_GET ideal-int
  8258  pkg syscall (darwin-386-cgo), const IP_FW_RESETLOG ideal-int
  8259  pkg syscall (darwin-386-cgo), const IP_FW_ZERO ideal-int
  8260  pkg syscall (darwin-386-cgo), const IP_HDRINCL ideal-int
  8261  pkg syscall (darwin-386-cgo), const IP_IPSEC_POLICY ideal-int
  8262  pkg syscall (darwin-386-cgo), const IP_MAXPACKET ideal-int
  8263  pkg syscall (darwin-386-cgo), const IP_MAX_GROUP_SRC_FILTER ideal-int
  8264  pkg syscall (darwin-386-cgo), const IP_MAX_MEMBERSHIPS ideal-int
  8265  pkg syscall (darwin-386-cgo), const IP_MAX_SOCK_MUTE_FILTER ideal-int
  8266  pkg syscall (darwin-386-cgo), const IP_MAX_SOCK_SRC_FILTER ideal-int
  8267  pkg syscall (darwin-386-cgo), const IP_MF ideal-int
  8268  pkg syscall (darwin-386-cgo), const IP_MIN_MEMBERSHIPS ideal-int
  8269  pkg syscall (darwin-386-cgo), const IP_MSFILTER ideal-int
  8270  pkg syscall (darwin-386-cgo), const IP_MSS ideal-int
  8271  pkg syscall (darwin-386-cgo), const IP_MULTICAST_IFINDEX ideal-int
  8272  pkg syscall (darwin-386-cgo), const IP_MULTICAST_VIF ideal-int
  8273  pkg syscall (darwin-386-cgo), const IP_NAT__XXX ideal-int
  8274  pkg syscall (darwin-386-cgo), const IP_OFFMASK ideal-int
  8275  pkg syscall (darwin-386-cgo), const IP_OLD_FW_ADD ideal-int
  8276  pkg syscall (darwin-386-cgo), const IP_OLD_FW_DEL ideal-int
  8277  pkg syscall (darwin-386-cgo), const IP_OLD_FW_FLUSH ideal-int
  8278  pkg syscall (darwin-386-cgo), const IP_OLD_FW_GET ideal-int
  8279  pkg syscall (darwin-386-cgo), const IP_OLD_FW_RESETLOG ideal-int
  8280  pkg syscall (darwin-386-cgo), const IP_OLD_FW_ZERO ideal-int
  8281  pkg syscall (darwin-386-cgo), const IP_OPTIONS ideal-int
  8282  pkg syscall (darwin-386-cgo), const IP_PKTINFO ideal-int
  8283  pkg syscall (darwin-386-cgo), const IP_PORTRANGE ideal-int
  8284  pkg syscall (darwin-386-cgo), const IP_PORTRANGE_DEFAULT ideal-int
  8285  pkg syscall (darwin-386-cgo), const IP_PORTRANGE_HIGH ideal-int
  8286  pkg syscall (darwin-386-cgo), const IP_PORTRANGE_LOW ideal-int
  8287  pkg syscall (darwin-386-cgo), const IP_RECVDSTADDR ideal-int
  8288  pkg syscall (darwin-386-cgo), const IP_RECVIF ideal-int
  8289  pkg syscall (darwin-386-cgo), const IP_RECVOPTS ideal-int
  8290  pkg syscall (darwin-386-cgo), const IP_RECVPKTINFO ideal-int
  8291  pkg syscall (darwin-386-cgo), const IP_RECVRETOPTS ideal-int
  8292  pkg syscall (darwin-386-cgo), const IP_RECVTTL ideal-int
  8293  pkg syscall (darwin-386-cgo), const IP_RETOPTS ideal-int
  8294  pkg syscall (darwin-386-cgo), const IP_RF ideal-int
  8295  pkg syscall (darwin-386-cgo), const IP_RSVP_OFF ideal-int
  8296  pkg syscall (darwin-386-cgo), const IP_RSVP_ON ideal-int
  8297  pkg syscall (darwin-386-cgo), const IP_RSVP_VIF_OFF ideal-int
  8298  pkg syscall (darwin-386-cgo), const IP_RSVP_VIF_ON ideal-int
  8299  pkg syscall (darwin-386-cgo), const IP_STRIPHDR ideal-int
  8300  pkg syscall (darwin-386-cgo), const IP_TRAFFIC_MGT_BACKGROUND ideal-int
  8301  pkg syscall (darwin-386-cgo), const IP_UNBLOCK_SOURCE ideal-int
  8302  pkg syscall (darwin-386-cgo), const LOCK_EX ideal-int
  8303  pkg syscall (darwin-386-cgo), const LOCK_NB ideal-int
  8304  pkg syscall (darwin-386-cgo), const LOCK_SH ideal-int
  8305  pkg syscall (darwin-386-cgo), const LOCK_UN ideal-int
  8306  pkg syscall (darwin-386-cgo), const MADV_CAN_REUSE ideal-int
  8307  pkg syscall (darwin-386-cgo), const MADV_DONTNEED ideal-int
  8308  pkg syscall (darwin-386-cgo), const MADV_FREE ideal-int
  8309  pkg syscall (darwin-386-cgo), const MADV_FREE_REUSABLE ideal-int
  8310  pkg syscall (darwin-386-cgo), const MADV_FREE_REUSE ideal-int
  8311  pkg syscall (darwin-386-cgo), const MADV_NORMAL ideal-int
  8312  pkg syscall (darwin-386-cgo), const MADV_RANDOM ideal-int
  8313  pkg syscall (darwin-386-cgo), const MADV_SEQUENTIAL ideal-int
  8314  pkg syscall (darwin-386-cgo), const MADV_WILLNEED ideal-int
  8315  pkg syscall (darwin-386-cgo), const MADV_ZERO_WIRED_PAGES ideal-int
  8316  pkg syscall (darwin-386-cgo), const MAP_ANON ideal-int
  8317  pkg syscall (darwin-386-cgo), const MAP_COPY ideal-int
  8318  pkg syscall (darwin-386-cgo), const MAP_FILE ideal-int
  8319  pkg syscall (darwin-386-cgo), const MAP_FIXED ideal-int
  8320  pkg syscall (darwin-386-cgo), const MAP_HASSEMAPHORE ideal-int
  8321  pkg syscall (darwin-386-cgo), const MAP_JIT ideal-int
  8322  pkg syscall (darwin-386-cgo), const MAP_NOCACHE ideal-int
  8323  pkg syscall (darwin-386-cgo), const MAP_NOEXTEND ideal-int
  8324  pkg syscall (darwin-386-cgo), const MAP_NORESERVE ideal-int
  8325  pkg syscall (darwin-386-cgo), const MAP_PRIVATE ideal-int
  8326  pkg syscall (darwin-386-cgo), const MAP_RENAME ideal-int
  8327  pkg syscall (darwin-386-cgo), const MAP_RESERVED0080 ideal-int
  8328  pkg syscall (darwin-386-cgo), const MAP_SHARED ideal-int
  8329  pkg syscall (darwin-386-cgo), const MCL_CURRENT ideal-int
  8330  pkg syscall (darwin-386-cgo), const MCL_FUTURE ideal-int
  8331  pkg syscall (darwin-386-cgo), const MSG_CTRUNC ideal-int
  8332  pkg syscall (darwin-386-cgo), const MSG_DONTROUTE ideal-int
  8333  pkg syscall (darwin-386-cgo), const MSG_DONTWAIT ideal-int
  8334  pkg syscall (darwin-386-cgo), const MSG_EOF ideal-int
  8335  pkg syscall (darwin-386-cgo), const MSG_EOR ideal-int
  8336  pkg syscall (darwin-386-cgo), const MSG_FLUSH ideal-int
  8337  pkg syscall (darwin-386-cgo), const MSG_HAVEMORE ideal-int
  8338  pkg syscall (darwin-386-cgo), const MSG_HOLD ideal-int
  8339  pkg syscall (darwin-386-cgo), const MSG_NEEDSA ideal-int
  8340  pkg syscall (darwin-386-cgo), const MSG_OOB ideal-int
  8341  pkg syscall (darwin-386-cgo), const MSG_PEEK ideal-int
  8342  pkg syscall (darwin-386-cgo), const MSG_RCVMORE ideal-int
  8343  pkg syscall (darwin-386-cgo), const MSG_SEND ideal-int
  8344  pkg syscall (darwin-386-cgo), const MSG_TRUNC ideal-int
  8345  pkg syscall (darwin-386-cgo), const MSG_WAITALL ideal-int
  8346  pkg syscall (darwin-386-cgo), const MSG_WAITSTREAM ideal-int
  8347  pkg syscall (darwin-386-cgo), const MS_ASYNC ideal-int
  8348  pkg syscall (darwin-386-cgo), const MS_DEACTIVATE ideal-int
  8349  pkg syscall (darwin-386-cgo), const MS_INVALIDATE ideal-int
  8350  pkg syscall (darwin-386-cgo), const MS_KILLPAGES ideal-int
  8351  pkg syscall (darwin-386-cgo), const MS_SYNC ideal-int
  8352  pkg syscall (darwin-386-cgo), const NAME_MAX ideal-int
  8353  pkg syscall (darwin-386-cgo), const NET_RT_DUMP ideal-int
  8354  pkg syscall (darwin-386-cgo), const NET_RT_DUMP2 ideal-int
  8355  pkg syscall (darwin-386-cgo), const NET_RT_FLAGS ideal-int
  8356  pkg syscall (darwin-386-cgo), const NET_RT_IFLIST ideal-int
  8357  pkg syscall (darwin-386-cgo), const NET_RT_IFLIST2 ideal-int
  8358  pkg syscall (darwin-386-cgo), const NET_RT_MAXID ideal-int
  8359  pkg syscall (darwin-386-cgo), const NET_RT_STAT ideal-int
  8360  pkg syscall (darwin-386-cgo), const NET_RT_TRASH ideal-int
  8361  pkg syscall (darwin-386-cgo), const NOTE_ABSOLUTE ideal-int
  8362  pkg syscall (darwin-386-cgo), const NOTE_ATTRIB ideal-int
  8363  pkg syscall (darwin-386-cgo), const NOTE_CHILD ideal-int
  8364  pkg syscall (darwin-386-cgo), const NOTE_DELETE ideal-int
  8365  pkg syscall (darwin-386-cgo), const NOTE_EXEC ideal-int
  8366  pkg syscall (darwin-386-cgo), const NOTE_EXIT ideal-int
  8367  pkg syscall (darwin-386-cgo), const NOTE_EXITSTATUS ideal-int
  8368  pkg syscall (darwin-386-cgo), const NOTE_EXTEND ideal-int
  8369  pkg syscall (darwin-386-cgo), const NOTE_FFAND ideal-int
  8370  pkg syscall (darwin-386-cgo), const NOTE_FFCOPY ideal-int
  8371  pkg syscall (darwin-386-cgo), const NOTE_FFCTRLMASK ideal-int
  8372  pkg syscall (darwin-386-cgo), const NOTE_FFLAGSMASK ideal-int
  8373  pkg syscall (darwin-386-cgo), const NOTE_FFNOP ideal-int
  8374  pkg syscall (darwin-386-cgo), const NOTE_FFOR ideal-int
  8375  pkg syscall (darwin-386-cgo), const NOTE_FORK ideal-int
  8376  pkg syscall (darwin-386-cgo), const NOTE_LINK ideal-int
  8377  pkg syscall (darwin-386-cgo), const NOTE_LOWAT ideal-int
  8378  pkg syscall (darwin-386-cgo), const NOTE_NONE ideal-int
  8379  pkg syscall (darwin-386-cgo), const NOTE_NSECONDS ideal-int
  8380  pkg syscall (darwin-386-cgo), const NOTE_PCTRLMASK ideal-int
  8381  pkg syscall (darwin-386-cgo), const NOTE_PDATAMASK ideal-int
  8382  pkg syscall (darwin-386-cgo), const NOTE_REAP ideal-int
  8383  pkg syscall (darwin-386-cgo), const NOTE_RENAME ideal-int
  8384  pkg syscall (darwin-386-cgo), const NOTE_RESOURCEEND ideal-int
  8385  pkg syscall (darwin-386-cgo), const NOTE_REVOKE ideal-int
  8386  pkg syscall (darwin-386-cgo), const NOTE_SECONDS ideal-int
  8387  pkg syscall (darwin-386-cgo), const NOTE_SIGNAL ideal-int
  8388  pkg syscall (darwin-386-cgo), const NOTE_TRACK ideal-int
  8389  pkg syscall (darwin-386-cgo), const NOTE_TRACKERR ideal-int
  8390  pkg syscall (darwin-386-cgo), const NOTE_TRIGGER ideal-int
  8391  pkg syscall (darwin-386-cgo), const NOTE_USECONDS ideal-int
  8392  pkg syscall (darwin-386-cgo), const NOTE_VM_ERROR ideal-int
  8393  pkg syscall (darwin-386-cgo), const NOTE_VM_PRESSURE ideal-int
  8394  pkg syscall (darwin-386-cgo), const NOTE_VM_PRESSURE_SUDDEN_TERMINATE ideal-int
  8395  pkg syscall (darwin-386-cgo), const NOTE_VM_PRESSURE_TERMINATE ideal-int
  8396  pkg syscall (darwin-386-cgo), const NOTE_WRITE ideal-int
  8397  pkg syscall (darwin-386-cgo), const O_ACCMODE ideal-int
  8398  pkg syscall (darwin-386-cgo), const O_ALERT ideal-int
  8399  pkg syscall (darwin-386-cgo), const O_DIRECTORY ideal-int
  8400  pkg syscall (darwin-386-cgo), const O_DSYNC ideal-int
  8401  pkg syscall (darwin-386-cgo), const O_EVTONLY ideal-int
  8402  pkg syscall (darwin-386-cgo), const O_EXLOCK ideal-int
  8403  pkg syscall (darwin-386-cgo), const O_FSYNC ideal-int
  8404  pkg syscall (darwin-386-cgo), const O_NDELAY ideal-int
  8405  pkg syscall (darwin-386-cgo), const O_NOFOLLOW ideal-int
  8406  pkg syscall (darwin-386-cgo), const O_POPUP ideal-int
  8407  pkg syscall (darwin-386-cgo), const O_SHLOCK ideal-int
  8408  pkg syscall (darwin-386-cgo), const O_SYMLINK ideal-int
  8409  pkg syscall (darwin-386-cgo), const PROT_EXEC ideal-int
  8410  pkg syscall (darwin-386-cgo), const PROT_NONE ideal-int
  8411  pkg syscall (darwin-386-cgo), const PROT_READ ideal-int
  8412  pkg syscall (darwin-386-cgo), const PROT_WRITE ideal-int
  8413  pkg syscall (darwin-386-cgo), const PTRACE_CONT ideal-int
  8414  pkg syscall (darwin-386-cgo), const PTRACE_KILL ideal-int
  8415  pkg syscall (darwin-386-cgo), const PTRACE_TRACEME ideal-int
  8416  pkg syscall (darwin-386-cgo), const PT_ATTACH ideal-int
  8417  pkg syscall (darwin-386-cgo), const PT_ATTACHEXC ideal-int
  8418  pkg syscall (darwin-386-cgo), const PT_CONTINUE ideal-int
  8419  pkg syscall (darwin-386-cgo), const PT_DENY_ATTACH ideal-int
  8420  pkg syscall (darwin-386-cgo), const PT_DETACH ideal-int
  8421  pkg syscall (darwin-386-cgo), const PT_FIRSTMACH ideal-int
  8422  pkg syscall (darwin-386-cgo), const PT_FORCEQUOTA ideal-int
  8423  pkg syscall (darwin-386-cgo), const PT_KILL ideal-int
  8424  pkg syscall (darwin-386-cgo), const PT_READ_D ideal-int
  8425  pkg syscall (darwin-386-cgo), const PT_READ_I ideal-int
  8426  pkg syscall (darwin-386-cgo), const PT_READ_U ideal-int
  8427  pkg syscall (darwin-386-cgo), const PT_SIGEXC ideal-int
  8428  pkg syscall (darwin-386-cgo), const PT_STEP ideal-int
  8429  pkg syscall (darwin-386-cgo), const PT_THUPDATE ideal-int
  8430  pkg syscall (darwin-386-cgo), const PT_TRACE_ME ideal-int
  8431  pkg syscall (darwin-386-cgo), const PT_WRITE_D ideal-int
  8432  pkg syscall (darwin-386-cgo), const PT_WRITE_I ideal-int
  8433  pkg syscall (darwin-386-cgo), const PT_WRITE_U ideal-int
  8434  pkg syscall (darwin-386-cgo), const RLIMIT_AS ideal-int
  8435  pkg syscall (darwin-386-cgo), const RLIMIT_CORE ideal-int
  8436  pkg syscall (darwin-386-cgo), const RLIMIT_CPU ideal-int
  8437  pkg syscall (darwin-386-cgo), const RLIMIT_DATA ideal-int
  8438  pkg syscall (darwin-386-cgo), const RLIMIT_FSIZE ideal-int
  8439  pkg syscall (darwin-386-cgo), const RLIMIT_NOFILE ideal-int
  8440  pkg syscall (darwin-386-cgo), const RLIMIT_STACK ideal-int
  8441  pkg syscall (darwin-386-cgo), const RLIM_INFINITY ideal-int
  8442  pkg syscall (darwin-386-cgo), const RTAX_AUTHOR ideal-int
  8443  pkg syscall (darwin-386-cgo), const RTAX_BRD ideal-int
  8444  pkg syscall (darwin-386-cgo), const RTAX_DST ideal-int
  8445  pkg syscall (darwin-386-cgo), const RTAX_GATEWAY ideal-int
  8446  pkg syscall (darwin-386-cgo), const RTAX_GENMASK ideal-int
  8447  pkg syscall (darwin-386-cgo), const RTAX_IFA ideal-int
  8448  pkg syscall (darwin-386-cgo), const RTAX_IFP ideal-int
  8449  pkg syscall (darwin-386-cgo), const RTAX_MAX ideal-int
  8450  pkg syscall (darwin-386-cgo), const RTAX_NETMASK ideal-int
  8451  pkg syscall (darwin-386-cgo), const RTA_AUTHOR ideal-int
  8452  pkg syscall (darwin-386-cgo), const RTA_BRD ideal-int
  8453  pkg syscall (darwin-386-cgo), const RTA_DST ideal-int
  8454  pkg syscall (darwin-386-cgo), const RTA_GATEWAY ideal-int
  8455  pkg syscall (darwin-386-cgo), const RTA_GENMASK ideal-int
  8456  pkg syscall (darwin-386-cgo), const RTA_IFA ideal-int
  8457  pkg syscall (darwin-386-cgo), const RTA_IFP ideal-int
  8458  pkg syscall (darwin-386-cgo), const RTA_NETMASK ideal-int
  8459  pkg syscall (darwin-386-cgo), const RTF_BLACKHOLE ideal-int
  8460  pkg syscall (darwin-386-cgo), const RTF_BROADCAST ideal-int
  8461  pkg syscall (darwin-386-cgo), const RTF_CLONING ideal-int
  8462  pkg syscall (darwin-386-cgo), const RTF_CONDEMNED ideal-int
  8463  pkg syscall (darwin-386-cgo), const RTF_DELCLONE ideal-int
  8464  pkg syscall (darwin-386-cgo), const RTF_DONE ideal-int
  8465  pkg syscall (darwin-386-cgo), const RTF_DYNAMIC ideal-int
  8466  pkg syscall (darwin-386-cgo), const RTF_GATEWAY ideal-int
  8467  pkg syscall (darwin-386-cgo), const RTF_HOST ideal-int
  8468  pkg syscall (darwin-386-cgo), const RTF_IFREF ideal-int
  8469  pkg syscall (darwin-386-cgo), const RTF_IFSCOPE ideal-int
  8470  pkg syscall (darwin-386-cgo), const RTF_LLINFO ideal-int
  8471  pkg syscall (darwin-386-cgo), const RTF_LOCAL ideal-int
  8472  pkg syscall (darwin-386-cgo), const RTF_MODIFIED ideal-int
  8473  pkg syscall (darwin-386-cgo), const RTF_MULTICAST ideal-int
  8474  pkg syscall (darwin-386-cgo), const RTF_PINNED ideal-int
  8475  pkg syscall (darwin-386-cgo), const RTF_PRCLONING ideal-int
  8476  pkg syscall (darwin-386-cgo), const RTF_PROTO1 ideal-int
  8477  pkg syscall (darwin-386-cgo), const RTF_PROTO2 ideal-int
  8478  pkg syscall (darwin-386-cgo), const RTF_PROTO3 ideal-int
  8479  pkg syscall (darwin-386-cgo), const RTF_REJECT ideal-int
  8480  pkg syscall (darwin-386-cgo), const RTF_STATIC ideal-int
  8481  pkg syscall (darwin-386-cgo), const RTF_UP ideal-int
  8482  pkg syscall (darwin-386-cgo), const RTF_WASCLONED ideal-int
  8483  pkg syscall (darwin-386-cgo), const RTF_XRESOLVE ideal-int
  8484  pkg syscall (darwin-386-cgo), const RTM_ADD ideal-int
  8485  pkg syscall (darwin-386-cgo), const RTM_CHANGE ideal-int
  8486  pkg syscall (darwin-386-cgo), const RTM_DELADDR ideal-int
  8487  pkg syscall (darwin-386-cgo), const RTM_DELETE ideal-int
  8488  pkg syscall (darwin-386-cgo), const RTM_DELMADDR ideal-int
  8489  pkg syscall (darwin-386-cgo), const RTM_GET ideal-int
  8490  pkg syscall (darwin-386-cgo), const RTM_GET2 ideal-int
  8491  pkg syscall (darwin-386-cgo), const RTM_IFINFO ideal-int
  8492  pkg syscall (darwin-386-cgo), const RTM_IFINFO2 ideal-int
  8493  pkg syscall (darwin-386-cgo), const RTM_LOCK ideal-int
  8494  pkg syscall (darwin-386-cgo), const RTM_LOSING ideal-int
  8495  pkg syscall (darwin-386-cgo), const RTM_MISS ideal-int
  8496  pkg syscall (darwin-386-cgo), const RTM_NEWADDR ideal-int
  8497  pkg syscall (darwin-386-cgo), const RTM_NEWMADDR ideal-int
  8498  pkg syscall (darwin-386-cgo), const RTM_NEWMADDR2 ideal-int
  8499  pkg syscall (darwin-386-cgo), const RTM_OLDADD ideal-int
  8500  pkg syscall (darwin-386-cgo), const RTM_OLDDEL ideal-int
  8501  pkg syscall (darwin-386-cgo), const RTM_REDIRECT ideal-int
  8502  pkg syscall (darwin-386-cgo), const RTM_RESOLVE ideal-int
  8503  pkg syscall (darwin-386-cgo), const RTM_RTTUNIT ideal-int
  8504  pkg syscall (darwin-386-cgo), const RTM_VERSION ideal-int
  8505  pkg syscall (darwin-386-cgo), const RTV_EXPIRE ideal-int
  8506  pkg syscall (darwin-386-cgo), const RTV_HOPCOUNT ideal-int
  8507  pkg syscall (darwin-386-cgo), const RTV_MTU ideal-int
  8508  pkg syscall (darwin-386-cgo), const RTV_RPIPE ideal-int
  8509  pkg syscall (darwin-386-cgo), const RTV_RTT ideal-int
  8510  pkg syscall (darwin-386-cgo), const RTV_RTTVAR ideal-int
  8511  pkg syscall (darwin-386-cgo), const RTV_SPIPE ideal-int
  8512  pkg syscall (darwin-386-cgo), const RTV_SSTHRESH ideal-int
  8513  pkg syscall (darwin-386-cgo), const RUSAGE_CHILDREN ideal-int
  8514  pkg syscall (darwin-386-cgo), const RUSAGE_SELF ideal-int
  8515  pkg syscall (darwin-386-cgo), const SCM_CREDS ideal-int
  8516  pkg syscall (darwin-386-cgo), const SCM_RIGHTS ideal-int
  8517  pkg syscall (darwin-386-cgo), const SCM_TIMESTAMP ideal-int
  8518  pkg syscall (darwin-386-cgo), const SCM_TIMESTAMP_MONOTONIC ideal-int
  8519  pkg syscall (darwin-386-cgo), const SIGCHLD Signal
  8520  pkg syscall (darwin-386-cgo), const SIGCONT Signal
  8521  pkg syscall (darwin-386-cgo), const SIGEMT Signal
  8522  pkg syscall (darwin-386-cgo), const SIGINFO Signal
  8523  pkg syscall (darwin-386-cgo), const SIGIO Signal
  8524  pkg syscall (darwin-386-cgo), const SIGIOT Signal
  8525  pkg syscall (darwin-386-cgo), const SIGPROF Signal
  8526  pkg syscall (darwin-386-cgo), const SIGSTOP Signal
  8527  pkg syscall (darwin-386-cgo), const SIGSYS Signal
  8528  pkg syscall (darwin-386-cgo), const SIGTSTP Signal
  8529  pkg syscall (darwin-386-cgo), const SIGTTIN Signal
  8530  pkg syscall (darwin-386-cgo), const SIGTTOU Signal
  8531  pkg syscall (darwin-386-cgo), const SIGURG Signal
  8532  pkg syscall (darwin-386-cgo), const SIGUSR1 Signal
  8533  pkg syscall (darwin-386-cgo), const SIGUSR2 Signal
  8534  pkg syscall (darwin-386-cgo), const SIGVTALRM Signal
  8535  pkg syscall (darwin-386-cgo), const SIGWINCH Signal
  8536  pkg syscall (darwin-386-cgo), const SIGXCPU Signal
  8537  pkg syscall (darwin-386-cgo), const SIGXFSZ Signal
  8538  pkg syscall (darwin-386-cgo), const SIOCADDMULTI ideal-int
  8539  pkg syscall (darwin-386-cgo), const SIOCAIFADDR ideal-int
  8540  pkg syscall (darwin-386-cgo), const SIOCALIFADDR ideal-int
  8541  pkg syscall (darwin-386-cgo), const SIOCARPIPLL ideal-int
  8542  pkg syscall (darwin-386-cgo), const SIOCATMARK ideal-int
  8543  pkg syscall (darwin-386-cgo), const SIOCAUTOADDR ideal-int
  8544  pkg syscall (darwin-386-cgo), const SIOCAUTONETMASK ideal-int
  8545  pkg syscall (darwin-386-cgo), const SIOCDELMULTI ideal-int
  8546  pkg syscall (darwin-386-cgo), const SIOCDIFADDR ideal-int
  8547  pkg syscall (darwin-386-cgo), const SIOCDIFPHYADDR ideal-int
  8548  pkg syscall (darwin-386-cgo), const SIOCDLIFADDR ideal-int
  8549  pkg syscall (darwin-386-cgo), const SIOCGDRVSPEC ideal-int
  8550  pkg syscall (darwin-386-cgo), const SIOCGETSGCNT ideal-int
  8551  pkg syscall (darwin-386-cgo), const SIOCGETVIFCNT ideal-int
  8552  pkg syscall (darwin-386-cgo), const SIOCGETVLAN ideal-int
  8553  pkg syscall (darwin-386-cgo), const SIOCGHIWAT ideal-int
  8554  pkg syscall (darwin-386-cgo), const SIOCGIFADDR ideal-int
  8555  pkg syscall (darwin-386-cgo), const SIOCGIFALTMTU ideal-int
  8556  pkg syscall (darwin-386-cgo), const SIOCGIFASYNCMAP ideal-int
  8557  pkg syscall (darwin-386-cgo), const SIOCGIFBOND ideal-int
  8558  pkg syscall (darwin-386-cgo), const SIOCGIFBRDADDR ideal-int
  8559  pkg syscall (darwin-386-cgo), const SIOCGIFCAP ideal-int
  8560  pkg syscall (darwin-386-cgo), const SIOCGIFCONF ideal-int
  8561  pkg syscall (darwin-386-cgo), const SIOCGIFDEVMTU ideal-int
  8562  pkg syscall (darwin-386-cgo), const SIOCGIFDSTADDR ideal-int
  8563  pkg syscall (darwin-386-cgo), const SIOCGIFFLAGS ideal-int
  8564  pkg syscall (darwin-386-cgo), const SIOCGIFGENERIC ideal-int
  8565  pkg syscall (darwin-386-cgo), const SIOCGIFKPI ideal-int
  8566  pkg syscall (darwin-386-cgo), const SIOCGIFMAC ideal-int
  8567  pkg syscall (darwin-386-cgo), const SIOCGIFMEDIA ideal-int
  8568  pkg syscall (darwin-386-cgo), const SIOCGIFMETRIC ideal-int
  8569  pkg syscall (darwin-386-cgo), const SIOCGIFMTU ideal-int
  8570  pkg syscall (darwin-386-cgo), const SIOCGIFNETMASK ideal-int
  8571  pkg syscall (darwin-386-cgo), const SIOCGIFPDSTADDR ideal-int
  8572  pkg syscall (darwin-386-cgo), const SIOCGIFPHYS ideal-int
  8573  pkg syscall (darwin-386-cgo), const SIOCGIFPSRCADDR ideal-int
  8574  pkg syscall (darwin-386-cgo), const SIOCGIFSTATUS ideal-int
  8575  pkg syscall (darwin-386-cgo), const SIOCGIFVLAN ideal-int
  8576  pkg syscall (darwin-386-cgo), const SIOCGIFWAKEFLAGS ideal-int
  8577  pkg syscall (darwin-386-cgo), const SIOCGLIFADDR ideal-int
  8578  pkg syscall (darwin-386-cgo), const SIOCGLIFPHYADDR ideal-int
  8579  pkg syscall (darwin-386-cgo), const SIOCGLOWAT ideal-int
  8580  pkg syscall (darwin-386-cgo), const SIOCGPGRP ideal-int
  8581  pkg syscall (darwin-386-cgo), const SIOCIFCREATE ideal-int
  8582  pkg syscall (darwin-386-cgo), const SIOCIFCREATE2 ideal-int
  8583  pkg syscall (darwin-386-cgo), const SIOCIFDESTROY ideal-int
  8584  pkg syscall (darwin-386-cgo), const SIOCRSLVMULTI ideal-int
  8585  pkg syscall (darwin-386-cgo), const SIOCSDRVSPEC ideal-int
  8586  pkg syscall (darwin-386-cgo), const SIOCSETVLAN ideal-int
  8587  pkg syscall (darwin-386-cgo), const SIOCSHIWAT ideal-int
  8588  pkg syscall (darwin-386-cgo), const SIOCSIFADDR ideal-int
  8589  pkg syscall (darwin-386-cgo), const SIOCSIFALTMTU ideal-int
  8590  pkg syscall (darwin-386-cgo), const SIOCSIFASYNCMAP ideal-int
  8591  pkg syscall (darwin-386-cgo), const SIOCSIFBOND ideal-int
  8592  pkg syscall (darwin-386-cgo), const SIOCSIFBRDADDR ideal-int
  8593  pkg syscall (darwin-386-cgo), const SIOCSIFCAP ideal-int
  8594  pkg syscall (darwin-386-cgo), const SIOCSIFDSTADDR ideal-int
  8595  pkg syscall (darwin-386-cgo), const SIOCSIFFLAGS ideal-int
  8596  pkg syscall (darwin-386-cgo), const SIOCSIFGENERIC ideal-int
  8597  pkg syscall (darwin-386-cgo), const SIOCSIFKPI ideal-int
  8598  pkg syscall (darwin-386-cgo), const SIOCSIFLLADDR ideal-int
  8599  pkg syscall (darwin-386-cgo), const SIOCSIFMAC ideal-int
  8600  pkg syscall (darwin-386-cgo), const SIOCSIFMEDIA ideal-int
  8601  pkg syscall (darwin-386-cgo), const SIOCSIFMETRIC ideal-int
  8602  pkg syscall (darwin-386-cgo), const SIOCSIFMTU ideal-int
  8603  pkg syscall (darwin-386-cgo), const SIOCSIFNETMASK ideal-int
  8604  pkg syscall (darwin-386-cgo), const SIOCSIFPHYADDR ideal-int
  8605  pkg syscall (darwin-386-cgo), const SIOCSIFPHYS ideal-int
  8606  pkg syscall (darwin-386-cgo), const SIOCSIFVLAN ideal-int
  8607  pkg syscall (darwin-386-cgo), const SIOCSLIFPHYADDR ideal-int
  8608  pkg syscall (darwin-386-cgo), const SIOCSLOWAT ideal-int
  8609  pkg syscall (darwin-386-cgo), const SIOCSPGRP ideal-int
  8610  pkg syscall (darwin-386-cgo), const SOCK_MAXADDRLEN ideal-int
  8611  pkg syscall (darwin-386-cgo), const SOCK_RDM ideal-int
  8612  pkg syscall (darwin-386-cgo), const SO_ACCEPTCONN ideal-int
  8613  pkg syscall (darwin-386-cgo), const SO_DEBUG ideal-int
  8614  pkg syscall (darwin-386-cgo), const SO_DONTTRUNC ideal-int
  8615  pkg syscall (darwin-386-cgo), const SO_ERROR ideal-int
  8616  pkg syscall (darwin-386-cgo), const SO_LABEL ideal-int
  8617  pkg syscall (darwin-386-cgo), const SO_LINGER_SEC ideal-int
  8618  pkg syscall (darwin-386-cgo), const SO_NKE ideal-int
  8619  pkg syscall (darwin-386-cgo), const SO_NOADDRERR ideal-int
  8620  pkg syscall (darwin-386-cgo), const SO_NOSIGPIPE ideal-int
  8621  pkg syscall (darwin-386-cgo), const SO_NOTIFYCONFLICT ideal-int
  8622  pkg syscall (darwin-386-cgo), const SO_NP_EXTENSIONS ideal-int
  8623  pkg syscall (darwin-386-cgo), const SO_NREAD ideal-int
  8624  pkg syscall (darwin-386-cgo), const SO_NWRITE ideal-int
  8625  pkg syscall (darwin-386-cgo), const SO_OOBINLINE ideal-int
  8626  pkg syscall (darwin-386-cgo), const SO_PEERLABEL ideal-int
  8627  pkg syscall (darwin-386-cgo), const SO_RANDOMPORT ideal-int
  8628  pkg syscall (darwin-386-cgo), const SO_RCVLOWAT ideal-int
  8629  pkg syscall (darwin-386-cgo), const SO_RCVTIMEO ideal-int
  8630  pkg syscall (darwin-386-cgo), const SO_RESTRICTIONS ideal-int
  8631  pkg syscall (darwin-386-cgo), const SO_RESTRICT_DENYIN ideal-int
  8632  pkg syscall (darwin-386-cgo), const SO_RESTRICT_DENYOUT ideal-int
  8633  pkg syscall (darwin-386-cgo), const SO_RESTRICT_DENYSET ideal-int
  8634  pkg syscall (darwin-386-cgo), const SO_REUSEPORT ideal-int
  8635  pkg syscall (darwin-386-cgo), const SO_REUSESHAREUID ideal-int
  8636  pkg syscall (darwin-386-cgo), const SO_SNDLOWAT ideal-int
  8637  pkg syscall (darwin-386-cgo), const SO_SNDTIMEO ideal-int
  8638  pkg syscall (darwin-386-cgo), const SO_TIMESTAMP ideal-int
  8639  pkg syscall (darwin-386-cgo), const SO_TIMESTAMP_MONOTONIC ideal-int
  8640  pkg syscall (darwin-386-cgo), const SO_TYPE ideal-int
  8641  pkg syscall (darwin-386-cgo), const SO_UPCALLCLOSEWAIT ideal-int
  8642  pkg syscall (darwin-386-cgo), const SO_USELOOPBACK ideal-int
  8643  pkg syscall (darwin-386-cgo), const SO_WANTMORE ideal-int
  8644  pkg syscall (darwin-386-cgo), const SO_WANTOOBFLAG ideal-int
  8645  pkg syscall (darwin-386-cgo), const SYS_ACCEPT ideal-int
  8646  pkg syscall (darwin-386-cgo), const SYS_ACCEPT_NOCANCEL ideal-int
  8647  pkg syscall (darwin-386-cgo), const SYS_ACCESS ideal-int
  8648  pkg syscall (darwin-386-cgo), const SYS_ACCESS_EXTENDED ideal-int
  8649  pkg syscall (darwin-386-cgo), const SYS_ACCT ideal-int
  8650  pkg syscall (darwin-386-cgo), const SYS_ADD_PROFIL ideal-int
  8651  pkg syscall (darwin-386-cgo), const SYS_ADJTIME ideal-int
  8652  pkg syscall (darwin-386-cgo), const SYS_AIO_CANCEL ideal-int
  8653  pkg syscall (darwin-386-cgo), const SYS_AIO_ERROR ideal-int
  8654  pkg syscall (darwin-386-cgo), const SYS_AIO_FSYNC ideal-int
  8655  pkg syscall (darwin-386-cgo), const SYS_AIO_READ ideal-int
  8656  pkg syscall (darwin-386-cgo), const SYS_AIO_RETURN ideal-int
  8657  pkg syscall (darwin-386-cgo), const SYS_AIO_SUSPEND ideal-int
  8658  pkg syscall (darwin-386-cgo), const SYS_AIO_SUSPEND_NOCANCEL ideal-int
  8659  pkg syscall (darwin-386-cgo), const SYS_AIO_WRITE ideal-int
  8660  pkg syscall (darwin-386-cgo), const SYS_ATGETMSG ideal-int
  8661  pkg syscall (darwin-386-cgo), const SYS_ATPGETREQ ideal-int
  8662  pkg syscall (darwin-386-cgo), const SYS_ATPGETRSP ideal-int
  8663  pkg syscall (darwin-386-cgo), const SYS_ATPSNDREQ ideal-int
  8664  pkg syscall (darwin-386-cgo), const SYS_ATPSNDRSP ideal-int
  8665  pkg syscall (darwin-386-cgo), const SYS_ATPUTMSG ideal-int
  8666  pkg syscall (darwin-386-cgo), const SYS_ATSOCKET ideal-int
  8667  pkg syscall (darwin-386-cgo), const SYS_AUDIT ideal-int
  8668  pkg syscall (darwin-386-cgo), const SYS_AUDITCTL ideal-int
  8669  pkg syscall (darwin-386-cgo), const SYS_AUDITON ideal-int
  8670  pkg syscall (darwin-386-cgo), const SYS_AUDIT_SESSION_JOIN ideal-int
  8671  pkg syscall (darwin-386-cgo), const SYS_AUDIT_SESSION_PORT ideal-int
  8672  pkg syscall (darwin-386-cgo), const SYS_AUDIT_SESSION_SELF ideal-int
  8673  pkg syscall (darwin-386-cgo), const SYS_BIND ideal-int
  8674  pkg syscall (darwin-386-cgo), const SYS_BSDTHREAD_CREATE ideal-int
  8675  pkg syscall (darwin-386-cgo), const SYS_BSDTHREAD_REGISTER ideal-int
  8676  pkg syscall (darwin-386-cgo), const SYS_BSDTHREAD_TERMINATE ideal-int
  8677  pkg syscall (darwin-386-cgo), const SYS_CHDIR ideal-int
  8678  pkg syscall (darwin-386-cgo), const SYS_CHFLAGS ideal-int
  8679  pkg syscall (darwin-386-cgo), const SYS_CHMOD ideal-int
  8680  pkg syscall (darwin-386-cgo), const SYS_CHMOD_EXTENDED ideal-int
  8681  pkg syscall (darwin-386-cgo), const SYS_CHOWN ideal-int
  8682  pkg syscall (darwin-386-cgo), const SYS_CHROOT ideal-int
  8683  pkg syscall (darwin-386-cgo), const SYS_CHUD ideal-int
  8684  pkg syscall (darwin-386-cgo), const SYS_CLOSE ideal-int
  8685  pkg syscall (darwin-386-cgo), const SYS_CLOSE_NOCANCEL ideal-int
  8686  pkg syscall (darwin-386-cgo), const SYS_CONNECT ideal-int
  8687  pkg syscall (darwin-386-cgo), const SYS_CONNECT_NOCANCEL ideal-int
  8688  pkg syscall (darwin-386-cgo), const SYS_COPYFILE ideal-int
  8689  pkg syscall (darwin-386-cgo), const SYS_CSOPS ideal-int
  8690  pkg syscall (darwin-386-cgo), const SYS_DELETE ideal-int
  8691  pkg syscall (darwin-386-cgo), const SYS_DUP ideal-int
  8692  pkg syscall (darwin-386-cgo), const SYS_DUP2 ideal-int
  8693  pkg syscall (darwin-386-cgo), const SYS_EXCHANGEDATA ideal-int
  8694  pkg syscall (darwin-386-cgo), const SYS_EXECVE ideal-int
  8695  pkg syscall (darwin-386-cgo), const SYS_EXIT ideal-int
  8696  pkg syscall (darwin-386-cgo), const SYS_FCHDIR ideal-int
  8697  pkg syscall (darwin-386-cgo), const SYS_FCHFLAGS ideal-int
  8698  pkg syscall (darwin-386-cgo), const SYS_FCHMOD ideal-int
  8699  pkg syscall (darwin-386-cgo), const SYS_FCHMOD_EXTENDED ideal-int
  8700  pkg syscall (darwin-386-cgo), const SYS_FCHOWN ideal-int
  8701  pkg syscall (darwin-386-cgo), const SYS_FCNTL ideal-int
  8702  pkg syscall (darwin-386-cgo), const SYS_FCNTL_NOCANCEL ideal-int
  8703  pkg syscall (darwin-386-cgo), const SYS_FDATASYNC ideal-int
  8704  pkg syscall (darwin-386-cgo), const SYS_FFSCTL ideal-int
  8705  pkg syscall (darwin-386-cgo), const SYS_FGETATTRLIST ideal-int
  8706  pkg syscall (darwin-386-cgo), const SYS_FGETXATTR ideal-int
  8707  pkg syscall (darwin-386-cgo), const SYS_FHOPEN ideal-int
  8708  pkg syscall (darwin-386-cgo), const SYS_FILEPORT_MAKEFD ideal-int
  8709  pkg syscall (darwin-386-cgo), const SYS_FILEPORT_MAKEPORT ideal-int
  8710  pkg syscall (darwin-386-cgo), const SYS_FLISTXATTR ideal-int
  8711  pkg syscall (darwin-386-cgo), const SYS_FLOCK ideal-int
  8712  pkg syscall (darwin-386-cgo), const SYS_FORK ideal-int
  8713  pkg syscall (darwin-386-cgo), const SYS_FPATHCONF ideal-int
  8714  pkg syscall (darwin-386-cgo), const SYS_FREMOVEXATTR ideal-int
  8715  pkg syscall (darwin-386-cgo), const SYS_FSCTL ideal-int
  8716  pkg syscall (darwin-386-cgo), const SYS_FSETATTRLIST ideal-int
  8717  pkg syscall (darwin-386-cgo), const SYS_FSETXATTR ideal-int
  8718  pkg syscall (darwin-386-cgo), const SYS_FSGETPATH ideal-int
  8719  pkg syscall (darwin-386-cgo), const SYS_FSTAT ideal-int
  8720  pkg syscall (darwin-386-cgo), const SYS_FSTAT64 ideal-int
  8721  pkg syscall (darwin-386-cgo), const SYS_FSTAT64_EXTENDED ideal-int
  8722  pkg syscall (darwin-386-cgo), const SYS_FSTATFS ideal-int
  8723  pkg syscall (darwin-386-cgo), const SYS_FSTATFS64 ideal-int
  8724  pkg syscall (darwin-386-cgo), const SYS_FSTATV ideal-int
  8725  pkg syscall (darwin-386-cgo), const SYS_FSTAT_EXTENDED ideal-int
  8726  pkg syscall (darwin-386-cgo), const SYS_FSYNC ideal-int
  8727  pkg syscall (darwin-386-cgo), const SYS_FSYNC_NOCANCEL ideal-int
  8728  pkg syscall (darwin-386-cgo), const SYS_FTRUNCATE ideal-int
  8729  pkg syscall (darwin-386-cgo), const SYS_FUTIMES ideal-int
  8730  pkg syscall (darwin-386-cgo), const SYS_GETATTRLIST ideal-int
  8731  pkg syscall (darwin-386-cgo), const SYS_GETAUDIT ideal-int
  8732  pkg syscall (darwin-386-cgo), const SYS_GETAUDIT_ADDR ideal-int
  8733  pkg syscall (darwin-386-cgo), const SYS_GETAUID ideal-int
  8734  pkg syscall (darwin-386-cgo), const SYS_GETDIRENTRIES ideal-int
  8735  pkg syscall (darwin-386-cgo), const SYS_GETDIRENTRIES64 ideal-int
  8736  pkg syscall (darwin-386-cgo), const SYS_GETDIRENTRIESATTR ideal-int
  8737  pkg syscall (darwin-386-cgo), const SYS_GETDTABLESIZE ideal-int
  8738  pkg syscall (darwin-386-cgo), const SYS_GETEGID ideal-int
  8739  pkg syscall (darwin-386-cgo), const SYS_GETEUID ideal-int
  8740  pkg syscall (darwin-386-cgo), const SYS_GETFH ideal-int
  8741  pkg syscall (darwin-386-cgo), const SYS_GETFSSTAT ideal-int
  8742  pkg syscall (darwin-386-cgo), const SYS_GETFSSTAT64 ideal-int
  8743  pkg syscall (darwin-386-cgo), const SYS_GETGID ideal-int
  8744  pkg syscall (darwin-386-cgo), const SYS_GETGROUPS ideal-int
  8745  pkg syscall (darwin-386-cgo), const SYS_GETHOSTUUID ideal-int
  8746  pkg syscall (darwin-386-cgo), const SYS_GETITIMER ideal-int
  8747  pkg syscall (darwin-386-cgo), const SYS_GETLCID ideal-int
  8748  pkg syscall (darwin-386-cgo), const SYS_GETLOGIN ideal-int
  8749  pkg syscall (darwin-386-cgo), const SYS_GETPEERNAME ideal-int
  8750  pkg syscall (darwin-386-cgo), const SYS_GETPGID ideal-int
  8751  pkg syscall (darwin-386-cgo), const SYS_GETPGRP ideal-int
  8752  pkg syscall (darwin-386-cgo), const SYS_GETPID ideal-int
  8753  pkg syscall (darwin-386-cgo), const SYS_GETPPID ideal-int
  8754  pkg syscall (darwin-386-cgo), const SYS_GETPRIORITY ideal-int
  8755  pkg syscall (darwin-386-cgo), const SYS_GETRLIMIT ideal-int
  8756  pkg syscall (darwin-386-cgo), const SYS_GETRUSAGE ideal-int
  8757  pkg syscall (darwin-386-cgo), const SYS_GETSGROUPS ideal-int
  8758  pkg syscall (darwin-386-cgo), const SYS_GETSID ideal-int
  8759  pkg syscall (darwin-386-cgo), const SYS_GETSOCKNAME ideal-int
  8760  pkg syscall (darwin-386-cgo), const SYS_GETSOCKOPT ideal-int
  8761  pkg syscall (darwin-386-cgo), const SYS_GETTID ideal-int
  8762  pkg syscall (darwin-386-cgo), const SYS_GETTIMEOFDAY ideal-int
  8763  pkg syscall (darwin-386-cgo), const SYS_GETUID ideal-int
  8764  pkg syscall (darwin-386-cgo), const SYS_GETWGROUPS ideal-int
  8765  pkg syscall (darwin-386-cgo), const SYS_GETXATTR ideal-int
  8766  pkg syscall (darwin-386-cgo), const SYS_IDENTITYSVC ideal-int
  8767  pkg syscall (darwin-386-cgo), const SYS_INITGROUPS ideal-int
  8768  pkg syscall (darwin-386-cgo), const SYS_IOCTL ideal-int
  8769  pkg syscall (darwin-386-cgo), const SYS_IOPOLICYSYS ideal-int
  8770  pkg syscall (darwin-386-cgo), const SYS_ISSETUGID ideal-int
  8771  pkg syscall (darwin-386-cgo), const SYS_KDEBUG_TRACE ideal-int
  8772  pkg syscall (darwin-386-cgo), const SYS_KEVENT ideal-int
  8773  pkg syscall (darwin-386-cgo), const SYS_KEVENT64 ideal-int
  8774  pkg syscall (darwin-386-cgo), const SYS_KILL ideal-int
  8775  pkg syscall (darwin-386-cgo), const SYS_KQUEUE ideal-int
  8776  pkg syscall (darwin-386-cgo), const SYS_LCHOWN ideal-int
  8777  pkg syscall (darwin-386-cgo), const SYS_LINK ideal-int
  8778  pkg syscall (darwin-386-cgo), const SYS_LIO_LISTIO ideal-int
  8779  pkg syscall (darwin-386-cgo), const SYS_LISTEN ideal-int
  8780  pkg syscall (darwin-386-cgo), const SYS_LISTXATTR ideal-int
  8781  pkg syscall (darwin-386-cgo), const SYS_LSEEK ideal-int
  8782  pkg syscall (darwin-386-cgo), const SYS_LSTAT ideal-int
  8783  pkg syscall (darwin-386-cgo), const SYS_LSTAT64 ideal-int
  8784  pkg syscall (darwin-386-cgo), const SYS_LSTAT64_EXTENDED ideal-int
  8785  pkg syscall (darwin-386-cgo), const SYS_LSTATV ideal-int
  8786  pkg syscall (darwin-386-cgo), const SYS_LSTAT_EXTENDED ideal-int
  8787  pkg syscall (darwin-386-cgo), const SYS_MADVISE ideal-int
  8788  pkg syscall (darwin-386-cgo), const SYS_MAXSYSCALL ideal-int
  8789  pkg syscall (darwin-386-cgo), const SYS_MINCORE ideal-int
  8790  pkg syscall (darwin-386-cgo), const SYS_MINHERIT ideal-int
  8791  pkg syscall (darwin-386-cgo), const SYS_MKCOMPLEX ideal-int
  8792  pkg syscall (darwin-386-cgo), const SYS_MKDIR ideal-int
  8793  pkg syscall (darwin-386-cgo), const SYS_MKDIR_EXTENDED ideal-int
  8794  pkg syscall (darwin-386-cgo), const SYS_MKFIFO ideal-int
  8795  pkg syscall (darwin-386-cgo), const SYS_MKFIFO_EXTENDED ideal-int
  8796  pkg syscall (darwin-386-cgo), const SYS_MKNOD ideal-int
  8797  pkg syscall (darwin-386-cgo), const SYS_MLOCK ideal-int
  8798  pkg syscall (darwin-386-cgo), const SYS_MLOCKALL ideal-int
  8799  pkg syscall (darwin-386-cgo), const SYS_MMAP ideal-int
  8800  pkg syscall (darwin-386-cgo), const SYS_MODWATCH ideal-int
  8801  pkg syscall (darwin-386-cgo), const SYS_MOUNT ideal-int
  8802  pkg syscall (darwin-386-cgo), const SYS_MPROTECT ideal-int
  8803  pkg syscall (darwin-386-cgo), const SYS_MSGCTL ideal-int
  8804  pkg syscall (darwin-386-cgo), const SYS_MSGGET ideal-int
  8805  pkg syscall (darwin-386-cgo), const SYS_MSGRCV ideal-int
  8806  pkg syscall (darwin-386-cgo), const SYS_MSGRCV_NOCANCEL ideal-int
  8807  pkg syscall (darwin-386-cgo), const SYS_MSGSND ideal-int
  8808  pkg syscall (darwin-386-cgo), const SYS_MSGSND_NOCANCEL ideal-int
  8809  pkg syscall (darwin-386-cgo), const SYS_MSGSYS ideal-int
  8810  pkg syscall (darwin-386-cgo), const SYS_MSYNC ideal-int
  8811  pkg syscall (darwin-386-cgo), const SYS_MSYNC_NOCANCEL ideal-int
  8812  pkg syscall (darwin-386-cgo), const SYS_MUNLOCK ideal-int
  8813  pkg syscall (darwin-386-cgo), const SYS_MUNLOCKALL ideal-int
  8814  pkg syscall (darwin-386-cgo), const SYS_MUNMAP ideal-int
  8815  pkg syscall (darwin-386-cgo), const SYS_NFSCLNT ideal-int
  8816  pkg syscall (darwin-386-cgo), const SYS_NFSSVC ideal-int
  8817  pkg syscall (darwin-386-cgo), const SYS_OPEN ideal-int
  8818  pkg syscall (darwin-386-cgo), const SYS_OPEN_EXTENDED ideal-int
  8819  pkg syscall (darwin-386-cgo), const SYS_OPEN_NOCANCEL ideal-int
  8820  pkg syscall (darwin-386-cgo), const SYS_PATHCONF ideal-int
  8821  pkg syscall (darwin-386-cgo), const SYS_PID_HIBERNATE ideal-int
  8822  pkg syscall (darwin-386-cgo), const SYS_PID_RESUME ideal-int
  8823  pkg syscall (darwin-386-cgo), const SYS_PID_SHUTDOWN_SOCKETS ideal-int
  8824  pkg syscall (darwin-386-cgo), const SYS_PID_SUSPEND ideal-int
  8825  pkg syscall (darwin-386-cgo), const SYS_PIPE ideal-int
  8826  pkg syscall (darwin-386-cgo), const SYS_POLL ideal-int
  8827  pkg syscall (darwin-386-cgo), const SYS_POLL_NOCANCEL ideal-int
  8828  pkg syscall (darwin-386-cgo), const SYS_POSIX_SPAWN ideal-int
  8829  pkg syscall (darwin-386-cgo), const SYS_PREAD ideal-int
  8830  pkg syscall (darwin-386-cgo), const SYS_PREAD_NOCANCEL ideal-int
  8831  pkg syscall (darwin-386-cgo), const SYS_PROCESS_POLICY ideal-int
  8832  pkg syscall (darwin-386-cgo), const SYS_PROC_INFO ideal-int
  8833  pkg syscall (darwin-386-cgo), const SYS_PROFIL ideal-int
  8834  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_CVBROAD ideal-int
  8835  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_CVCLRPREPOST ideal-int
  8836  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_CVSIGNAL ideal-int
  8837  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_CVWAIT ideal-int
  8838  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_MUTEXDROP ideal-int
  8839  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_MUTEXWAIT ideal-int
  8840  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_DOWNGRADE ideal-int
  8841  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_LONGRDLOCK ideal-int
  8842  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_RDLOCK ideal-int
  8843  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_UNLOCK ideal-int
  8844  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_UNLOCK2 ideal-int
  8845  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_UPGRADE ideal-int
  8846  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_WRLOCK ideal-int
  8847  pkg syscall (darwin-386-cgo), const SYS_PSYNCH_RW_YIELDWRLOCK ideal-int
  8848  pkg syscall (darwin-386-cgo), const SYS_PTRACE ideal-int
  8849  pkg syscall (darwin-386-cgo), const SYS_PWRITE ideal-int
  8850  pkg syscall (darwin-386-cgo), const SYS_PWRITE_NOCANCEL ideal-int
  8851  pkg syscall (darwin-386-cgo), const SYS_QUOTACTL ideal-int
  8852  pkg syscall (darwin-386-cgo), const SYS_READ ideal-int
  8853  pkg syscall (darwin-386-cgo), const SYS_READLINK ideal-int
  8854  pkg syscall (darwin-386-cgo), const SYS_READV ideal-int
  8855  pkg syscall (darwin-386-cgo), const SYS_READV_NOCANCEL ideal-int
  8856  pkg syscall (darwin-386-cgo), const SYS_READ_NOCANCEL ideal-int
  8857  pkg syscall (darwin-386-cgo), const SYS_REBOOT ideal-int
  8858  pkg syscall (darwin-386-cgo), const SYS_RECVFROM ideal-int
  8859  pkg syscall (darwin-386-cgo), const SYS_RECVFROM_NOCANCEL ideal-int
  8860  pkg syscall (darwin-386-cgo), const SYS_RECVMSG ideal-int
  8861  pkg syscall (darwin-386-cgo), const SYS_RECVMSG_NOCANCEL ideal-int
  8862  pkg syscall (darwin-386-cgo), const SYS_REMOVEXATTR ideal-int
  8863  pkg syscall (darwin-386-cgo), const SYS_RENAME ideal-int
  8864  pkg syscall (darwin-386-cgo), const SYS_REVOKE ideal-int
  8865  pkg syscall (darwin-386-cgo), const SYS_RMDIR ideal-int
  8866  pkg syscall (darwin-386-cgo), const SYS_SEARCHFS ideal-int
  8867  pkg syscall (darwin-386-cgo), const SYS_SELECT ideal-int
  8868  pkg syscall (darwin-386-cgo), const SYS_SELECT_NOCANCEL ideal-int
  8869  pkg syscall (darwin-386-cgo), const SYS_SEMCTL ideal-int
  8870  pkg syscall (darwin-386-cgo), const SYS_SEMGET ideal-int
  8871  pkg syscall (darwin-386-cgo), const SYS_SEMOP ideal-int
  8872  pkg syscall (darwin-386-cgo), const SYS_SEMSYS ideal-int
  8873  pkg syscall (darwin-386-cgo), const SYS_SEM_CLOSE ideal-int
  8874  pkg syscall (darwin-386-cgo), const SYS_SEM_DESTROY ideal-int
  8875  pkg syscall (darwin-386-cgo), const SYS_SEM_GETVALUE ideal-int
  8876  pkg syscall (darwin-386-cgo), const SYS_SEM_INIT ideal-int
  8877  pkg syscall (darwin-386-cgo), const SYS_SEM_OPEN ideal-int
  8878  pkg syscall (darwin-386-cgo), const SYS_SEM_POST ideal-int
  8879  pkg syscall (darwin-386-cgo), const SYS_SEM_TRYWAIT ideal-int
  8880  pkg syscall (darwin-386-cgo), const SYS_SEM_UNLINK ideal-int
  8881  pkg syscall (darwin-386-cgo), const SYS_SEM_WAIT ideal-int
  8882  pkg syscall (darwin-386-cgo), const SYS_SEM_WAIT_NOCANCEL ideal-int
  8883  pkg syscall (darwin-386-cgo), const SYS_SENDFILE ideal-int
  8884  pkg syscall (darwin-386-cgo), const SYS_SENDMSG ideal-int
  8885  pkg syscall (darwin-386-cgo), const SYS_SENDMSG_NOCANCEL ideal-int
  8886  pkg syscall (darwin-386-cgo), const SYS_SENDTO ideal-int
  8887  pkg syscall (darwin-386-cgo), const SYS_SENDTO_NOCANCEL ideal-int
  8888  pkg syscall (darwin-386-cgo), const SYS_SETATTRLIST ideal-int
  8889  pkg syscall (darwin-386-cgo), const SYS_SETAUDIT ideal-int
  8890  pkg syscall (darwin-386-cgo), const SYS_SETAUDIT_ADDR ideal-int
  8891  pkg syscall (darwin-386-cgo), const SYS_SETAUID ideal-int
  8892  pkg syscall (darwin-386-cgo), const SYS_SETEGID ideal-int
  8893  pkg syscall (darwin-386-cgo), const SYS_SETEUID ideal-int
  8894  pkg syscall (darwin-386-cgo), const SYS_SETGID ideal-int
  8895  pkg syscall (darwin-386-cgo), const SYS_SETGROUPS ideal-int
  8896  pkg syscall (darwin-386-cgo), const SYS_SETITIMER ideal-int
  8897  pkg syscall (darwin-386-cgo), const SYS_SETLCID ideal-int
  8898  pkg syscall (darwin-386-cgo), const SYS_SETLOGIN ideal-int
  8899  pkg syscall (darwin-386-cgo), const SYS_SETPGID ideal-int
  8900  pkg syscall (darwin-386-cgo), const SYS_SETPRIORITY ideal-int
  8901  pkg syscall (darwin-386-cgo), const SYS_SETPRIVEXEC ideal-int
  8902  pkg syscall (darwin-386-cgo), const SYS_SETREGID ideal-int
  8903  pkg syscall (darwin-386-cgo), const SYS_SETREUID ideal-int
  8904  pkg syscall (darwin-386-cgo), const SYS_SETRLIMIT ideal-int
  8905  pkg syscall (darwin-386-cgo), const SYS_SETSGROUPS ideal-int
  8906  pkg syscall (darwin-386-cgo), const SYS_SETSID ideal-int
  8907  pkg syscall (darwin-386-cgo), const SYS_SETSOCKOPT ideal-int
  8908  pkg syscall (darwin-386-cgo), const SYS_SETTID ideal-int
  8909  pkg syscall (darwin-386-cgo), const SYS_SETTID_WITH_PID ideal-int
  8910  pkg syscall (darwin-386-cgo), const SYS_SETTIMEOFDAY ideal-int
  8911  pkg syscall (darwin-386-cgo), const SYS_SETUID ideal-int
  8912  pkg syscall (darwin-386-cgo), const SYS_SETWGROUPS ideal-int
  8913  pkg syscall (darwin-386-cgo), const SYS_SETXATTR ideal-int
  8914  pkg syscall (darwin-386-cgo), const SYS_SHARED_REGION_CHECK_NP ideal-int
  8915  pkg syscall (darwin-386-cgo), const SYS_SHARED_REGION_MAP_AND_SLIDE_NP ideal-int
  8916  pkg syscall (darwin-386-cgo), const SYS_SHMAT ideal-int
  8917  pkg syscall (darwin-386-cgo), const SYS_SHMCTL ideal-int
  8918  pkg syscall (darwin-386-cgo), const SYS_SHMDT ideal-int
  8919  pkg syscall (darwin-386-cgo), const SYS_SHMGET ideal-int
  8920  pkg syscall (darwin-386-cgo), const SYS_SHMSYS ideal-int
  8921  pkg syscall (darwin-386-cgo), const SYS_SHM_OPEN ideal-int
  8922  pkg syscall (darwin-386-cgo), const SYS_SHM_UNLINK ideal-int
  8923  pkg syscall (darwin-386-cgo), const SYS_SHUTDOWN ideal-int
  8924  pkg syscall (darwin-386-cgo), const SYS_SIGACTION ideal-int
  8925  pkg syscall (darwin-386-cgo), const SYS_SIGALTSTACK ideal-int
  8926  pkg syscall (darwin-386-cgo), const SYS_SIGPENDING ideal-int
  8927  pkg syscall (darwin-386-cgo), const SYS_SIGPROCMASK ideal-int
  8928  pkg syscall (darwin-386-cgo), const SYS_SIGRETURN ideal-int
  8929  pkg syscall (darwin-386-cgo), const SYS_SIGSUSPEND ideal-int
  8930  pkg syscall (darwin-386-cgo), const SYS_SIGSUSPEND_NOCANCEL ideal-int
  8931  pkg syscall (darwin-386-cgo), const SYS_SOCKET ideal-int
  8932  pkg syscall (darwin-386-cgo), const SYS_SOCKETPAIR ideal-int
  8933  pkg syscall (darwin-386-cgo), const SYS_STACK_SNAPSHOT ideal-int
  8934  pkg syscall (darwin-386-cgo), const SYS_STAT ideal-int
  8935  pkg syscall (darwin-386-cgo), const SYS_STAT64 ideal-int
  8936  pkg syscall (darwin-386-cgo), const SYS_STAT64_EXTENDED ideal-int
  8937  pkg syscall (darwin-386-cgo), const SYS_STATFS ideal-int
  8938  pkg syscall (darwin-386-cgo), const SYS_STATFS64 ideal-int
  8939  pkg syscall (darwin-386-cgo), const SYS_STATV ideal-int
  8940  pkg syscall (darwin-386-cgo), const SYS_STAT_EXTENDED ideal-int
  8941  pkg syscall (darwin-386-cgo), const SYS_SWAPON ideal-int
  8942  pkg syscall (darwin-386-cgo), const SYS_SYMLINK ideal-int
  8943  pkg syscall (darwin-386-cgo), const SYS_SYNC ideal-int
  8944  pkg syscall (darwin-386-cgo), const SYS_SYSCALL ideal-int
  8945  pkg syscall (darwin-386-cgo), const SYS_THREAD_SELFID ideal-int
  8946  pkg syscall (darwin-386-cgo), const SYS_TRUNCATE ideal-int
  8947  pkg syscall (darwin-386-cgo), const SYS_UMASK ideal-int
  8948  pkg syscall (darwin-386-cgo), const SYS_UMASK_EXTENDED ideal-int
  8949  pkg syscall (darwin-386-cgo), const SYS_UNDELETE ideal-int
  8950  pkg syscall (darwin-386-cgo), const SYS_UNLINK ideal-int
  8951  pkg syscall (darwin-386-cgo), const SYS_UNMOUNT ideal-int
  8952  pkg syscall (darwin-386-cgo), const SYS_UTIMES ideal-int
  8953  pkg syscall (darwin-386-cgo), const SYS_VFORK ideal-int
  8954  pkg syscall (darwin-386-cgo), const SYS_VM_PRESSURE_MONITOR ideal-int
  8955  pkg syscall (darwin-386-cgo), const SYS_WAIT4 ideal-int
  8956  pkg syscall (darwin-386-cgo), const SYS_WAIT4_NOCANCEL ideal-int
  8957  pkg syscall (darwin-386-cgo), const SYS_WAITEVENT ideal-int
  8958  pkg syscall (darwin-386-cgo), const SYS_WAITID ideal-int
  8959  pkg syscall (darwin-386-cgo), const SYS_WAITID_NOCANCEL ideal-int
  8960  pkg syscall (darwin-386-cgo), const SYS_WATCHEVENT ideal-int
  8961  pkg syscall (darwin-386-cgo), const SYS_WORKQ_KERNRETURN ideal-int
  8962  pkg syscall (darwin-386-cgo), const SYS_WORKQ_OPEN ideal-int
  8963  pkg syscall (darwin-386-cgo), const SYS_WRITE ideal-int
  8964  pkg syscall (darwin-386-cgo), const SYS_WRITEV ideal-int
  8965  pkg syscall (darwin-386-cgo), const SYS_WRITEV_NOCANCEL ideal-int
  8966  pkg syscall (darwin-386-cgo), const SYS_WRITE_NOCANCEL ideal-int
  8967  pkg syscall (darwin-386-cgo), const SYS___DISABLE_THREADSIGNAL ideal-int
  8968  pkg syscall (darwin-386-cgo), const SYS___MAC_EXECVE ideal-int
  8969  pkg syscall (darwin-386-cgo), const SYS___MAC_GETFSSTAT ideal-int
  8970  pkg syscall (darwin-386-cgo), const SYS___MAC_GET_FD ideal-int
  8971  pkg syscall (darwin-386-cgo), const SYS___MAC_GET_FILE ideal-int
  8972  pkg syscall (darwin-386-cgo), const SYS___MAC_GET_LCID ideal-int
  8973  pkg syscall (darwin-386-cgo), const SYS___MAC_GET_LCTX ideal-int
  8974  pkg syscall (darwin-386-cgo), const SYS___MAC_GET_LINK ideal-int
  8975  pkg syscall (darwin-386-cgo), const SYS___MAC_GET_MOUNT ideal-int
  8976  pkg syscall (darwin-386-cgo), const SYS___MAC_GET_PID ideal-int
  8977  pkg syscall (darwin-386-cgo), const SYS___MAC_GET_PROC ideal-int
  8978  pkg syscall (darwin-386-cgo), const SYS___MAC_MOUNT ideal-int
  8979  pkg syscall (darwin-386-cgo), const SYS___MAC_SET_FD ideal-int
  8980  pkg syscall (darwin-386-cgo), const SYS___MAC_SET_FILE ideal-int
  8981  pkg syscall (darwin-386-cgo), const SYS___MAC_SET_LCTX ideal-int
  8982  pkg syscall (darwin-386-cgo), const SYS___MAC_SET_LINK ideal-int
  8983  pkg syscall (darwin-386-cgo), const SYS___MAC_SET_PROC ideal-int
  8984  pkg syscall (darwin-386-cgo), const SYS___MAC_SYSCALL ideal-int
  8985  pkg syscall (darwin-386-cgo), const SYS___OLD_SEMWAIT_SIGNAL ideal-int
  8986  pkg syscall (darwin-386-cgo), const SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL ideal-int
  8987  pkg syscall (darwin-386-cgo), const SYS___PTHREAD_CANCELED ideal-int
  8988  pkg syscall (darwin-386-cgo), const SYS___PTHREAD_CHDIR ideal-int
  8989  pkg syscall (darwin-386-cgo), const SYS___PTHREAD_FCHDIR ideal-int
  8990  pkg syscall (darwin-386-cgo), const SYS___PTHREAD_KILL ideal-int
  8991  pkg syscall (darwin-386-cgo), const SYS___PTHREAD_MARKCANCEL ideal-int
  8992  pkg syscall (darwin-386-cgo), const SYS___PTHREAD_SIGMASK ideal-int
  8993  pkg syscall (darwin-386-cgo), const SYS___SEMWAIT_SIGNAL ideal-int
  8994  pkg syscall (darwin-386-cgo), const SYS___SEMWAIT_SIGNAL_NOCANCEL ideal-int
  8995  pkg syscall (darwin-386-cgo), const SYS___SIGWAIT ideal-int
  8996  pkg syscall (darwin-386-cgo), const SYS___SIGWAIT_NOCANCEL ideal-int
  8997  pkg syscall (darwin-386-cgo), const SYS___SYSCTL ideal-int
  8998  pkg syscall (darwin-386-cgo), const S_IEXEC ideal-int
  8999  pkg syscall (darwin-386-cgo), const S_IFWHT ideal-int
  9000  pkg syscall (darwin-386-cgo), const S_IREAD ideal-int
  9001  pkg syscall (darwin-386-cgo), const S_IRGRP ideal-int
  9002  pkg syscall (darwin-386-cgo), const S_IROTH ideal-int
  9003  pkg syscall (darwin-386-cgo), const S_IRWXG ideal-int
  9004  pkg syscall (darwin-386-cgo), const S_IRWXO ideal-int
  9005  pkg syscall (darwin-386-cgo), const S_IRWXU ideal-int
  9006  pkg syscall (darwin-386-cgo), const S_ISTXT ideal-int
  9007  pkg syscall (darwin-386-cgo), const S_IWGRP ideal-int
  9008  pkg syscall (darwin-386-cgo), const S_IWOTH ideal-int
  9009  pkg syscall (darwin-386-cgo), const S_IWRITE ideal-int
  9010  pkg syscall (darwin-386-cgo), const S_IXGRP ideal-int
  9011  pkg syscall (darwin-386-cgo), const S_IXOTH ideal-int
  9012  pkg syscall (darwin-386-cgo), const SizeofBpfHdr ideal-int
  9013  pkg syscall (darwin-386-cgo), const SizeofBpfInsn ideal-int
  9014  pkg syscall (darwin-386-cgo), const SizeofBpfProgram ideal-int
  9015  pkg syscall (darwin-386-cgo), const SizeofBpfStat ideal-int
  9016  pkg syscall (darwin-386-cgo), const SizeofBpfVersion ideal-int
  9017  pkg syscall (darwin-386-cgo), const SizeofCmsghdr ideal-int
  9018  pkg syscall (darwin-386-cgo), const SizeofIPMreq ideal-int
  9019  pkg syscall (darwin-386-cgo), const SizeofIPv6Mreq ideal-int
  9020  pkg syscall (darwin-386-cgo), const SizeofIfData ideal-int
  9021  pkg syscall (darwin-386-cgo), const SizeofIfMsghdr ideal-int
  9022  pkg syscall (darwin-386-cgo), const SizeofIfaMsghdr ideal-int
  9023  pkg syscall (darwin-386-cgo), const SizeofIfmaMsghdr ideal-int
  9024  pkg syscall (darwin-386-cgo), const SizeofIfmaMsghdr2 ideal-int
  9025  pkg syscall (darwin-386-cgo), const SizeofInet6Pktinfo ideal-int
  9026  pkg syscall (darwin-386-cgo), const SizeofLinger ideal-int
  9027  pkg syscall (darwin-386-cgo), const SizeofMsghdr ideal-int
  9028  pkg syscall (darwin-386-cgo), const SizeofRtMetrics ideal-int
  9029  pkg syscall (darwin-386-cgo), const SizeofRtMsghdr ideal-int
  9030  pkg syscall (darwin-386-cgo), const SizeofSockaddrAny ideal-int
  9031  pkg syscall (darwin-386-cgo), const SizeofSockaddrDatalink ideal-int
  9032  pkg syscall (darwin-386-cgo), const SizeofSockaddrInet4 ideal-int
  9033  pkg syscall (darwin-386-cgo), const SizeofSockaddrInet6 ideal-int
  9034  pkg syscall (darwin-386-cgo), const SizeofSockaddrUnix ideal-int
  9035  pkg syscall (darwin-386-cgo), const TCP_CONNECTIONTIMEOUT ideal-int
  9036  pkg syscall (darwin-386-cgo), const TCP_KEEPALIVE ideal-int
  9037  pkg syscall (darwin-386-cgo), const TCP_MAXHLEN ideal-int
  9038  pkg syscall (darwin-386-cgo), const TCP_MAXOLEN ideal-int
  9039  pkg syscall (darwin-386-cgo), const TCP_MAXSEG ideal-int
  9040  pkg syscall (darwin-386-cgo), const TCP_MAXWIN ideal-int
  9041  pkg syscall (darwin-386-cgo), const TCP_MAX_SACK ideal-int
  9042  pkg syscall (darwin-386-cgo), const TCP_MAX_WINSHIFT ideal-int
  9043  pkg syscall (darwin-386-cgo), const TCP_MINMSS ideal-int
  9044  pkg syscall (darwin-386-cgo), const TCP_MINMSSOVERLOAD ideal-int
  9045  pkg syscall (darwin-386-cgo), const TCP_MSS ideal-int
  9046  pkg syscall (darwin-386-cgo), const TCP_NOOPT ideal-int
  9047  pkg syscall (darwin-386-cgo), const TCP_NOPUSH ideal-int
  9048  pkg syscall (darwin-386-cgo), const TCP_RXT_CONNDROPTIME ideal-int
  9049  pkg syscall (darwin-386-cgo), const TCP_RXT_FINDROP ideal-int
  9050  pkg syscall (darwin-386-cgo), const TIOCCBRK ideal-int
  9051  pkg syscall (darwin-386-cgo), const TIOCCDTR ideal-int
  9052  pkg syscall (darwin-386-cgo), const TIOCCONS ideal-int
  9053  pkg syscall (darwin-386-cgo), const TIOCDCDTIMESTAMP ideal-int
  9054  pkg syscall (darwin-386-cgo), const TIOCDRAIN ideal-int
  9055  pkg syscall (darwin-386-cgo), const TIOCDSIMICROCODE ideal-int
  9056  pkg syscall (darwin-386-cgo), const TIOCEXCL ideal-int
  9057  pkg syscall (darwin-386-cgo), const TIOCEXT ideal-int
  9058  pkg syscall (darwin-386-cgo), const TIOCFLUSH ideal-int
  9059  pkg syscall (darwin-386-cgo), const TIOCGDRAINWAIT ideal-int
  9060  pkg syscall (darwin-386-cgo), const TIOCGETA ideal-int
  9061  pkg syscall (darwin-386-cgo), const TIOCGETD ideal-int
  9062  pkg syscall (darwin-386-cgo), const TIOCGPGRP ideal-int
  9063  pkg syscall (darwin-386-cgo), const TIOCGWINSZ ideal-int
  9064  pkg syscall (darwin-386-cgo), const TIOCIXOFF ideal-int
  9065  pkg syscall (darwin-386-cgo), const TIOCIXON ideal-int
  9066  pkg syscall (darwin-386-cgo), const TIOCMBIC ideal-int
  9067  pkg syscall (darwin-386-cgo), const TIOCMBIS ideal-int
  9068  pkg syscall (darwin-386-cgo), const TIOCMGDTRWAIT ideal-int
  9069  pkg syscall (darwin-386-cgo), const TIOCMGET ideal-int
  9070  pkg syscall (darwin-386-cgo), const TIOCMODG ideal-int
  9071  pkg syscall (darwin-386-cgo), const TIOCMODS ideal-int
  9072  pkg syscall (darwin-386-cgo), const TIOCMSDTRWAIT ideal-int
  9073  pkg syscall (darwin-386-cgo), const TIOCMSET ideal-int
  9074  pkg syscall (darwin-386-cgo), const TIOCM_CAR ideal-int
  9075  pkg syscall (darwin-386-cgo), const TIOCM_CD ideal-int
  9076  pkg syscall (darwin-386-cgo), const TIOCM_CTS ideal-int
  9077  pkg syscall (darwin-386-cgo), const TIOCM_DSR ideal-int
  9078  pkg syscall (darwin-386-cgo), const TIOCM_DTR ideal-int
  9079  pkg syscall (darwin-386-cgo), const TIOCM_LE ideal-int
  9080  pkg syscall (darwin-386-cgo), const TIOCM_RI ideal-int
  9081  pkg syscall (darwin-386-cgo), const TIOCM_RNG ideal-int
  9082  pkg syscall (darwin-386-cgo), const TIOCM_RTS ideal-int
  9083  pkg syscall (darwin-386-cgo), const TIOCM_SR ideal-int
  9084  pkg syscall (darwin-386-cgo), const TIOCM_ST ideal-int
  9085  pkg syscall (darwin-386-cgo), const TIOCNOTTY ideal-int
  9086  pkg syscall (darwin-386-cgo), const TIOCNXCL ideal-int
  9087  pkg syscall (darwin-386-cgo), const TIOCOUTQ ideal-int
  9088  pkg syscall (darwin-386-cgo), const TIOCPKT ideal-int
  9089  pkg syscall (darwin-386-cgo), const TIOCPKT_DATA ideal-int
  9090  pkg syscall (darwin-386-cgo), const TIOCPKT_DOSTOP ideal-int
  9091  pkg syscall (darwin-386-cgo), const TIOCPKT_FLUSHREAD ideal-int
  9092  pkg syscall (darwin-386-cgo), const TIOCPKT_FLUSHWRITE ideal-int
  9093  pkg syscall (darwin-386-cgo), const TIOCPKT_IOCTL ideal-int
  9094  pkg syscall (darwin-386-cgo), const TIOCPKT_NOSTOP ideal-int
  9095  pkg syscall (darwin-386-cgo), const TIOCPKT_START ideal-int
  9096  pkg syscall (darwin-386-cgo), const TIOCPKT_STOP ideal-int
  9097  pkg syscall (darwin-386-cgo), const TIOCPTYGNAME ideal-int
  9098  pkg syscall (darwin-386-cgo), const TIOCPTYGRANT ideal-int
  9099  pkg syscall (darwin-386-cgo), const TIOCPTYUNLK ideal-int
  9100  pkg syscall (darwin-386-cgo), const TIOCREMOTE ideal-int
  9101  pkg syscall (darwin-386-cgo), const TIOCSBRK ideal-int
  9102  pkg syscall (darwin-386-cgo), const TIOCSCONS ideal-int
  9103  pkg syscall (darwin-386-cgo), const TIOCSCTTY ideal-int
  9104  pkg syscall (darwin-386-cgo), const TIOCSDRAINWAIT ideal-int
  9105  pkg syscall (darwin-386-cgo), const TIOCSDTR ideal-int
  9106  pkg syscall (darwin-386-cgo), const TIOCSETA ideal-int
  9107  pkg syscall (darwin-386-cgo), const TIOCSETAF ideal-int
  9108  pkg syscall (darwin-386-cgo), const TIOCSETAW ideal-int
  9109  pkg syscall (darwin-386-cgo), const TIOCSETD ideal-int
  9110  pkg syscall (darwin-386-cgo), const TIOCSIG ideal-int
  9111  pkg syscall (darwin-386-cgo), const TIOCSPGRP ideal-int
  9112  pkg syscall (darwin-386-cgo), const TIOCSTART ideal-int
  9113  pkg syscall (darwin-386-cgo), const TIOCSTAT ideal-int
  9114  pkg syscall (darwin-386-cgo), const TIOCSTI ideal-int
  9115  pkg syscall (darwin-386-cgo), const TIOCSTOP ideal-int
  9116  pkg syscall (darwin-386-cgo), const TIOCSWINSZ ideal-int
  9117  pkg syscall (darwin-386-cgo), const TIOCTIMESTAMP ideal-int
  9118  pkg syscall (darwin-386-cgo), const TIOCUCNTL ideal-int
  9119  pkg syscall (darwin-386-cgo), const WCONTINUED ideal-int
  9120  pkg syscall (darwin-386-cgo), const WCOREFLAG ideal-int
  9121  pkg syscall (darwin-386-cgo), const WEXITED ideal-int
  9122  pkg syscall (darwin-386-cgo), const WNOHANG ideal-int
  9123  pkg syscall (darwin-386-cgo), const WNOWAIT ideal-int
  9124  pkg syscall (darwin-386-cgo), const WORDSIZE ideal-int
  9125  pkg syscall (darwin-386-cgo), const WSTOPPED ideal-int
  9126  pkg syscall (darwin-386-cgo), const WUNTRACED ideal-int
  9127  pkg syscall (darwin-386-cgo), func Accept(int) (int, Sockaddr, error)
  9128  pkg syscall (darwin-386-cgo), func Access(string, uint32) error
  9129  pkg syscall (darwin-386-cgo), func Adjtime(*Timeval, *Timeval) error
  9130  pkg syscall (darwin-386-cgo), func Bind(int, Sockaddr) error
  9131  pkg syscall (darwin-386-cgo), func BpfBuflen(int) (int, error)
  9132  pkg syscall (darwin-386-cgo), func BpfDatalink(int) (int, error)
  9133  pkg syscall (darwin-386-cgo), func BpfHeadercmpl(int) (int, error)
  9134  pkg syscall (darwin-386-cgo), func BpfInterface(int, string) (string, error)
  9135  pkg syscall (darwin-386-cgo), func BpfJump(int, int, int, int) *BpfInsn
  9136  pkg syscall (darwin-386-cgo), func BpfStats(int) (*BpfStat, error)
  9137  pkg syscall (darwin-386-cgo), func BpfStmt(int, int) *BpfInsn
  9138  pkg syscall (darwin-386-cgo), func BpfTimeout(int) (*Timeval, error)
  9139  pkg syscall (darwin-386-cgo), func CheckBpfVersion(int) error
  9140  pkg syscall (darwin-386-cgo), func Chflags(string, int) error
  9141  pkg syscall (darwin-386-cgo), func Chroot(string) error
  9142  pkg syscall (darwin-386-cgo), func Close(int) error
  9143  pkg syscall (darwin-386-cgo), func CloseOnExec(int)
  9144  pkg syscall (darwin-386-cgo), func CmsgLen(int) int
  9145  pkg syscall (darwin-386-cgo), func CmsgSpace(int) int
  9146  pkg syscall (darwin-386-cgo), func Connect(int, Sockaddr) error
  9147  pkg syscall (darwin-386-cgo), func Dup(int) (int, error)
  9148  pkg syscall (darwin-386-cgo), func Dup2(int, int) error
  9149  pkg syscall (darwin-386-cgo), func Exchangedata(string, string, int) error
  9150  pkg syscall (darwin-386-cgo), func Fchdir(int) error
  9151  pkg syscall (darwin-386-cgo), func Fchflags(string, int) error
  9152  pkg syscall (darwin-386-cgo), func Fchmod(int, uint32) error
  9153  pkg syscall (darwin-386-cgo), func Fchown(int, int, int) error
  9154  pkg syscall (darwin-386-cgo), func Flock(int, int) error
  9155  pkg syscall (darwin-386-cgo), func FlushBpf(int) error
  9156  pkg syscall (darwin-386-cgo), func ForkExec(string, []string, *ProcAttr) (int, error)
  9157  pkg syscall (darwin-386-cgo), func Fpathconf(int, int) (int, error)
  9158  pkg syscall (darwin-386-cgo), func Fstat(int, *Stat_t) error
  9159  pkg syscall (darwin-386-cgo), func Fstatfs(int, *Statfs_t) error
  9160  pkg syscall (darwin-386-cgo), func Fsync(int) error
  9161  pkg syscall (darwin-386-cgo), func Ftruncate(int, int64) error
  9162  pkg syscall (darwin-386-cgo), func Futimes(int, []Timeval) error
  9163  pkg syscall (darwin-386-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
  9164  pkg syscall (darwin-386-cgo), func Getdtablesize() int
  9165  pkg syscall (darwin-386-cgo), func Getfsstat([]Statfs_t, int) (int, error)
  9166  pkg syscall (darwin-386-cgo), func Getpeername(int) (Sockaddr, error)
  9167  pkg syscall (darwin-386-cgo), func Getpgid(int) (int, error)
  9168  pkg syscall (darwin-386-cgo), func Getpgrp() int
  9169  pkg syscall (darwin-386-cgo), func Getpriority(int, int) (int, error)
  9170  pkg syscall (darwin-386-cgo), func Getrlimit(int, *Rlimit) error
  9171  pkg syscall (darwin-386-cgo), func Getrusage(int, *Rusage) error
  9172  pkg syscall (darwin-386-cgo), func Getsid(int) (int, error)
  9173  pkg syscall (darwin-386-cgo), func Getsockname(int) (Sockaddr, error)
  9174  pkg syscall (darwin-386-cgo), func GetsockoptByte(int, int, int) (uint8, error)
  9175  pkg syscall (darwin-386-cgo), func GetsockoptIPMreq(int, int, int) (*IPMreq, error)
  9176  pkg syscall (darwin-386-cgo), func GetsockoptIPv6Mreq(int, int, int) (*IPv6Mreq, error)
  9177  pkg syscall (darwin-386-cgo), func GetsockoptInet4Addr(int, int, int) ([4]uint8, error)
  9178  pkg syscall (darwin-386-cgo), func GetsockoptInt(int, int, int) (int, error)
  9179  pkg syscall (darwin-386-cgo), func Issetugid() bool
  9180  pkg syscall (darwin-386-cgo), func Kevent(int, []Kevent_t, []Kevent_t, *Timespec) (int, error)
  9181  pkg syscall (darwin-386-cgo), func Kill(int, Signal) error
  9182  pkg syscall (darwin-386-cgo), func Kqueue() (int, error)
  9183  pkg syscall (darwin-386-cgo), func Listen(int, int) error
  9184  pkg syscall (darwin-386-cgo), func Lstat(string, *Stat_t) error
  9185  pkg syscall (darwin-386-cgo), func Mkfifo(string, uint32) error
  9186  pkg syscall (darwin-386-cgo), func Mknod(string, uint32, int) error
  9187  pkg syscall (darwin-386-cgo), func Mmap(int, int64, int, int, int) ([]uint8, error)
  9188  pkg syscall (darwin-386-cgo), func Munmap([]uint8) error
  9189  pkg syscall (darwin-386-cgo), func NsecToTimespec(int64) Timespec
  9190  pkg syscall (darwin-386-cgo), func Open(string, int, uint32) (int, error)
  9191  pkg syscall (darwin-386-cgo), func ParseDirent([]uint8, int, []string) (int, int, []string)
  9192  pkg syscall (darwin-386-cgo), func ParseRoutingMessage([]uint8) ([]RoutingMessage, error)
  9193  pkg syscall (darwin-386-cgo), func ParseRoutingSockaddr(RoutingMessage) ([]Sockaddr, error)
  9194  pkg syscall (darwin-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
  9195  pkg syscall (darwin-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
  9196  pkg syscall (darwin-386-cgo), func Pathconf(string, int) (int, error)
  9197  pkg syscall (darwin-386-cgo), func Pipe([]int) error
  9198  pkg syscall (darwin-386-cgo), func Pread(int, []uint8, int64) (int, error)
  9199  pkg syscall (darwin-386-cgo), func PtraceAttach(int) error
  9200  pkg syscall (darwin-386-cgo), func PtraceDetach(int) error
  9201  pkg syscall (darwin-386-cgo), func Pwrite(int, []uint8, int64) (int, error)
  9202  pkg syscall (darwin-386-cgo), func RawSyscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  9203  pkg syscall (darwin-386-cgo), func RawSyscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  9204  pkg syscall (darwin-386-cgo), func Read(int, []uint8) (int, error)
  9205  pkg syscall (darwin-386-cgo), func ReadDirent(int, []uint8) (int, error)
  9206  pkg syscall (darwin-386-cgo), func Recvfrom(int, []uint8, int) (int, Sockaddr, error)
  9207  pkg syscall (darwin-386-cgo), func Recvmsg(int, []uint8, []uint8, int) (int, int, int, Sockaddr, error)
  9208  pkg syscall (darwin-386-cgo), func Revoke(string) error
  9209  pkg syscall (darwin-386-cgo), func RouteRIB(int, int) ([]uint8, error)
  9210  pkg syscall (darwin-386-cgo), func Seek(int, int64, int) (int64, error)
  9211  pkg syscall (darwin-386-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
  9212  pkg syscall (darwin-386-cgo), func Sendfile(int, int, *int64, int) (int, error)
  9213  pkg syscall (darwin-386-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
  9214  pkg syscall (darwin-386-cgo), func Sendto(int, []uint8, int, Sockaddr) error
  9215  pkg syscall (darwin-386-cgo), func SetBpf(int, []BpfInsn) error
  9216  pkg syscall (darwin-386-cgo), func SetBpfBuflen(int, int) (int, error)
  9217  pkg syscall (darwin-386-cgo), func SetBpfDatalink(int, int) (int, error)
  9218  pkg syscall (darwin-386-cgo), func SetBpfHeadercmpl(int, int) error
  9219  pkg syscall (darwin-386-cgo), func SetBpfImmediate(int, int) error
  9220  pkg syscall (darwin-386-cgo), func SetBpfInterface(int, string) error
  9221  pkg syscall (darwin-386-cgo), func SetBpfPromisc(int, int) error
  9222  pkg syscall (darwin-386-cgo), func SetBpfTimeout(int, *Timeval) error
  9223  pkg syscall (darwin-386-cgo), func SetKevent(*Kevent_t, int, int, int)
  9224  pkg syscall (darwin-386-cgo), func SetNonblock(int, bool) error
  9225  pkg syscall (darwin-386-cgo), func Setegid(int) error
  9226  pkg syscall (darwin-386-cgo), func Seteuid(int) error
  9227  pkg syscall (darwin-386-cgo), func Setgid(int) error
  9228  pkg syscall (darwin-386-cgo), func Setgroups([]int) error
  9229  pkg syscall (darwin-386-cgo), func Setlogin(string) error
  9230  pkg syscall (darwin-386-cgo), func Setpgid(int, int) error
  9231  pkg syscall (darwin-386-cgo), func Setpriority(int, int, int) error
  9232  pkg syscall (darwin-386-cgo), func Setprivexec(int) error
  9233  pkg syscall (darwin-386-cgo), func Setregid(int, int) error
  9234  pkg syscall (darwin-386-cgo), func Setreuid(int, int) error
  9235  pkg syscall (darwin-386-cgo), func Setrlimit(int, *Rlimit) error
  9236  pkg syscall (darwin-386-cgo), func Setsid() (int, error)
  9237  pkg syscall (darwin-386-cgo), func SetsockoptByte(int, int, int, uint8) error
  9238  pkg syscall (darwin-386-cgo), func SetsockoptIPMreq(int, int, int, *IPMreq) error
  9239  pkg syscall (darwin-386-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
  9240  pkg syscall (darwin-386-cgo), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
  9241  pkg syscall (darwin-386-cgo), func SetsockoptInt(int, int, int, int) error
  9242  pkg syscall (darwin-386-cgo), func SetsockoptLinger(int, int, int, *Linger) error
  9243  pkg syscall (darwin-386-cgo), func SetsockoptString(int, int, int, string) error
  9244  pkg syscall (darwin-386-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
  9245  pkg syscall (darwin-386-cgo), func Settimeofday(*Timeval) error
  9246  pkg syscall (darwin-386-cgo), func Setuid(int) error
  9247  pkg syscall (darwin-386-cgo), func Shutdown(int, int) error
  9248  pkg syscall (darwin-386-cgo), func Socket(int, int, int) (int, error)
  9249  pkg syscall (darwin-386-cgo), func Socketpair(int, int, int) ([2]int, error)
  9250  pkg syscall (darwin-386-cgo), func Stat(string, *Stat_t) error
  9251  pkg syscall (darwin-386-cgo), func Statfs(string, *Statfs_t) error
  9252  pkg syscall (darwin-386-cgo), func StringSlicePtr([]string) []*uint8
  9253  pkg syscall (darwin-386-cgo), func Sync() error
  9254  pkg syscall (darwin-386-cgo), func Syscall(uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  9255  pkg syscall (darwin-386-cgo), func Syscall6(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  9256  pkg syscall (darwin-386-cgo), func Syscall9(uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr, uintptr) (uintptr, uintptr, Errno)
  9257  pkg syscall (darwin-386-cgo), func Sysctl(string) (string, error)
  9258  pkg syscall (darwin-386-cgo), func SysctlUint32(string) (uint32, error)
  9259  pkg syscall (darwin-386-cgo), func TimespecToNsec(Timespec) int64
  9260  pkg syscall (darwin-386-cgo), func TimevalToNsec(Timeval) int64
  9261  pkg syscall (darwin-386-cgo), func Truncate(string, int64) error
  9262  pkg syscall (darwin-386-cgo), func Umask(int) int
  9263  pkg syscall (darwin-386-cgo), func Undelete(string) error
  9264  pkg syscall (darwin-386-cgo), func UnixRights(...int) []uint8
  9265  pkg syscall (darwin-386-cgo), func Unmount(string, int) error
  9266  pkg syscall (darwin-386-cgo), func Wait4(int, *WaitStatus, int, *Rusage) (int, error)
  9267  pkg syscall (darwin-386-cgo), func Write(int, []uint8) (int, error)
  9268  pkg syscall (darwin-386-cgo), method (*Cmsghdr) SetLen(int)
  9269  pkg syscall (darwin-386-cgo), method (*Iovec) SetLen(int)
  9270  pkg syscall (darwin-386-cgo), method (*Msghdr) SetControllen(int)
  9271  pkg syscall (darwin-386-cgo), type BpfHdr struct
  9272  pkg syscall (darwin-386-cgo), type BpfHdr struct, Caplen uint32
  9273  pkg syscall (darwin-386-cgo), type BpfHdr struct, Datalen uint32
  9274  pkg syscall (darwin-386-cgo), type BpfHdr struct, Hdrlen uint16
  9275  pkg syscall (darwin-386-cgo), type BpfHdr struct, Pad_cgo_0 [2]uint8
  9276  pkg syscall (darwin-386-cgo), type BpfHdr struct, Tstamp Timeval
  9277  pkg syscall (darwin-386-cgo), type BpfInsn struct
  9278  pkg syscall (darwin-386-cgo), type BpfInsn struct, Code uint16
  9279  pkg syscall (darwin-386-cgo), type BpfInsn struct, Jf uint8
  9280  pkg syscall (darwin-386-cgo), type BpfInsn struct, Jt uint8
  9281  pkg syscall (darwin-386-cgo), type BpfInsn struct, K uint32
  9282  pkg syscall (darwin-386-cgo), type BpfProgram struct
  9283  pkg syscall (darwin-386-cgo), type BpfProgram struct, Insns *BpfInsn
  9284  pkg syscall (darwin-386-cgo), type BpfProgram struct, Len uint32
  9285  pkg syscall (darwin-386-cgo), type BpfStat struct
  9286  pkg syscall (darwin-386-cgo), type BpfStat struct, Drop uint32
  9287  pkg syscall (darwin-386-cgo), type BpfStat struct, Recv uint32
  9288  pkg syscall (darwin-386-cgo), type BpfVersion struct
  9289  pkg syscall (darwin-386-cgo), type BpfVersion struct, Major uint16
  9290  pkg syscall (darwin-386-cgo), type BpfVersion struct, Minor uint16
  9291  pkg syscall (darwin-386-cgo), type Cmsghdr struct
  9292  pkg syscall (darwin-386-cgo), type Cmsghdr struct, Len uint32
  9293  pkg syscall (darwin-386-cgo), type Cmsghdr struct, Level int32
  9294  pkg syscall (darwin-386-cgo), type Cmsghdr struct, Type int32
  9295  pkg syscall (darwin-386-cgo), type Credential struct
  9296  pkg syscall (darwin-386-cgo), type Credential struct, Gid uint32
  9297  pkg syscall (darwin-386-cgo), type Credential struct, Groups []uint32
  9298  pkg syscall (darwin-386-cgo), type Credential struct, Uid uint32
  9299  pkg syscall (darwin-386-cgo), type Dirent struct
  9300  pkg syscall (darwin-386-cgo), type Dirent struct, Ino uint64
  9301  pkg syscall (darwin-386-cgo), type Dirent struct, Name [1024]int8
  9302  pkg syscall (darwin-386-cgo), type Dirent struct, Namlen uint16
  9303  pkg syscall (darwin-386-cgo), type Dirent struct, Pad_cgo_0 [3]uint8
  9304  pkg syscall (darwin-386-cgo), type Dirent struct, Reclen uint16
  9305  pkg syscall (darwin-386-cgo), type Dirent struct, Seekoff uint64
  9306  pkg syscall (darwin-386-cgo), type Dirent struct, Type uint8
  9307  pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct
  9308  pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct, Buffer *uint8
  9309  pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct, Length uint32
  9310  pkg syscall (darwin-386-cgo), type Fbootstraptransfer_t struct, Offset int64
  9311  pkg syscall (darwin-386-cgo), type FdSet struct
  9312  pkg syscall (darwin-386-cgo), type FdSet struct, Bits [32]int32
  9313  pkg syscall (darwin-386-cgo), type Flock_t struct
  9314  pkg syscall (darwin-386-cgo), type Flock_t struct, Len int64
  9315  pkg syscall (darwin-386-cgo), type Flock_t struct, Pid int32
  9316  pkg syscall (darwin-386-cgo), type Flock_t struct, Start int64
  9317  pkg syscall (darwin-386-cgo), type Flock_t struct, Type int16
  9318  pkg syscall (darwin-386-cgo), type Flock_t struct, Whence int16
  9319  pkg syscall (darwin-386-cgo), type Fsid struct
  9320  pkg syscall (darwin-386-cgo), type Fsid struct, Val [2]int32
  9321  pkg syscall (darwin-386-cgo), type Fstore_t struct
  9322  pkg syscall (darwin-386-cgo), type Fstore_t struct, Bytesalloc int64
  9323  pkg syscall (darwin-386-cgo), type Fstore_t struct, Flags uint32
  9324  pkg syscall (darwin-386-cgo), type Fstore_t struct, Length int64
  9325  pkg syscall (darwin-386-cgo), type Fstore_t struct, Offset int64
  9326  pkg syscall (darwin-386-cgo), type Fstore_t struct, Posmode int32
  9327  pkg syscall (darwin-386-cgo), type IfData struct
  9328  pkg syscall (darwin-386-cgo), type IfData struct, Addrlen uint8
  9329  pkg syscall (darwin-386-cgo), type IfData struct, Baudrate uint32
  9330  pkg syscall (darwin-386-cgo), type IfData struct, Collisions uint32
  9331  pkg syscall (darwin-386-cgo), type IfData struct, Hdrlen uint8
  9332  pkg syscall (darwin-386-cgo), type IfData struct, Hwassist uint32
  9333  pkg syscall (darwin-386-cgo), type IfData struct, Ibytes uint32
  9334  pkg syscall (darwin-386-cgo), type IfData struct, Ierrors uint32
  9335  pkg syscall (darwin-386-cgo), type IfData struct, Imcasts uint32
  9336  pkg syscall (darwin-386-cgo), type IfData struct, Ipackets uint32
  9337  pkg syscall (darwin-386-cgo), type IfData struct, Iqdrops uint32
  9338  pkg syscall (darwin-386-cgo), type IfData struct, Lastchange Timeval
  9339  pkg syscall (darwin-386-cgo), type IfData struct, Metric uint32
  9340  pkg syscall (darwin-386-cgo), type IfData struct, Mtu uint32
  9341  pkg syscall (darwin-386-cgo), type IfData struct, Noproto uint32
  9342  pkg syscall (darwin-386-cgo), type IfData struct, Obytes uint32
  9343  pkg syscall (darwin-386-cgo), type IfData struct, Oerrors uint32
  9344  pkg syscall (darwin-386-cgo), type IfData struct, Omcasts uint32
  9345  pkg syscall (darwin-386-cgo), type IfData struct, Opackets uint32
  9346  pkg syscall (darwin-386-cgo), type IfData struct, Physical uint8
  9347  pkg syscall (darwin-386-cgo), type IfData struct, Recvquota uint8
  9348  pkg syscall (darwin-386-cgo), type IfData struct, Recvtiming uint32
  9349  pkg syscall (darwin-386-cgo), type IfData struct, Reserved1 uint32
  9350  pkg syscall (darwin-386-cgo), type IfData struct, Reserved2 uint32
  9351  pkg syscall (darwin-386-cgo), type IfData struct, Type uint8
  9352  pkg syscall (darwin-386-cgo), type IfData struct, Typelen uint8
  9353  pkg syscall (darwin-386-cgo), type IfData struct, Unused1 uint8
  9354  pkg syscall (darwin-386-cgo), type IfData struct, Unused2 uint32
  9355  pkg syscall (darwin-386-cgo), type IfData struct, Xmitquota uint8
  9356  pkg syscall (darwin-386-cgo), type IfData struct, Xmittiming uint32
  9357  pkg syscall (darwin-386-cgo), type IfMsghdr struct
  9358  pkg syscall (darwin-386-cgo), type IfMsghdr struct, Addrs int32
  9359  pkg syscall (darwin-386-cgo), type IfMsghdr struct, Data IfData
  9360  pkg syscall (darwin-386-cgo), type IfMsghdr struct, Flags int32
  9361  pkg syscall (darwin-386-cgo), type IfMsghdr struct, Index uint16
  9362  pkg syscall (darwin-386-cgo), type IfMsghdr struct, Msglen uint16
  9363  pkg syscall (darwin-386-cgo), type IfMsghdr struct, Pad_cgo_0 [2]uint8
  9364  pkg syscall (darwin-386-cgo), type IfMsghdr struct, Type uint8
  9365  pkg syscall (darwin-386-cgo), type IfMsghdr struct, Version uint8
  9366  pkg syscall (darwin-386-cgo), type IfaMsghdr struct
  9367  pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Addrs int32
  9368  pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Flags int32
  9369  pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Index uint16
  9370  pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Metric int32
  9371  pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Msglen uint16
  9372  pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Pad_cgo_0 [2]uint8
  9373  pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Type uint8
  9374  pkg syscall (darwin-386-cgo), type IfaMsghdr struct, Version uint8
  9375  pkg syscall (darwin-386-cgo), type IfmaMsghdr struct
  9376  pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Addrs int32
  9377  pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Flags int32
  9378  pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Index uint16
  9379  pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Msglen uint16
  9380  pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Pad_cgo_0 [2]uint8
  9381  pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Type uint8
  9382  pkg syscall (darwin-386-cgo), type IfmaMsghdr struct, Version uint8
  9383  pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct
  9384  pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Addrs int32
  9385  pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Flags int32
  9386  pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Index uint16
  9387  pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Msglen uint16
  9388  pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Pad_cgo_0 [2]uint8
  9389  pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Refcount int32
  9390  pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Type uint8
  9391  pkg syscall (darwin-386-cgo), type IfmaMsghdr2 struct, Version uint8
  9392  pkg syscall (darwin-386-cgo), type Inet6Pktinfo struct
  9393  pkg syscall (darwin-386-cgo), type Inet6Pktinfo struct, Addr [16]uint8
  9394  pkg syscall (darwin-386-cgo), type Inet6Pktinfo struct, Ifindex uint32
  9395  pkg syscall (darwin-386-cgo), type InterfaceAddrMessage struct
  9396  pkg syscall (darwin-386-cgo), type InterfaceAddrMessage struct, Data []uint8
  9397  pkg syscall (darwin-386-cgo), type InterfaceAddrMessage struct, Header IfaMsghdr
  9398  pkg syscall (darwin-386-cgo), type InterfaceMessage struct
  9399  pkg syscall (darwin-386-cgo), type InterfaceMessage struct, Data []uint8
  9400  pkg syscall (darwin-386-cgo), type InterfaceMessage struct, Header IfMsghdr
  9401  pkg syscall (darwin-386-cgo), type InterfaceMulticastAddrMessage struct
  9402  pkg syscall (darwin-386-cgo), type InterfaceMulticastAddrMessage struct, Data []uint8
  9403  pkg syscall (darwin-386-cgo), type InterfaceMulticastAddrMessage struct, Header IfmaMsghdr2
  9404  pkg syscall (darwin-386-cgo), type Iovec struct
  9405  pkg syscall (darwin-386-cgo), type Iovec struct, Base *uint8
  9406  pkg syscall (darwin-386-cgo), type Iovec struct, Len uint32
  9407  pkg syscall (darwin-386-cgo), type Kevent_t struct
  9408  pkg syscall (darwin-386-cgo), type Kevent_t struct, Data int32
  9409  pkg syscall (darwin-386-cgo), type Kevent_t struct, Fflags uint32
  9410  pkg syscall (darwin-386-cgo), type Kevent_t struct, Filter int16
  9411  pkg syscall (darwin-386-cgo), type Kevent_t struct, Flags uint16
  9412  pkg syscall (darwin-386-cgo), type Kevent_t struct, Ident uint32
  9413  pkg syscall (darwin-386-cgo), type Kevent_t struct, Udata *uint8
  9414  pkg syscall (darwin-386-cgo), type Log2phys_t struct
  9415  pkg syscall (darwin-386-cgo), type Log2phys_t struct, Contigbytes int64
  9416  pkg syscall (darwin-386-cgo), type Log2phys_t struct, Devoffset int64
  9417  pkg syscall (darwin-386-cgo), type Log2phys_t struct, Flags uint32
  9418  pkg syscall (darwin-386-cgo), type Msghdr struct
  9419  pkg syscall (darwin-386-cgo), type Msghdr struct, Control *uint8
  9420  pkg syscall (darwin-386-cgo), type Msghdr struct, Controllen uint32
  9421  pkg syscall (darwin-386-cgo), type Msghdr struct, Flags int32
  9422  pkg syscall (darwin-386-cgo), type Msghdr struct, Iov *Iovec
  9423  pkg syscall (darwin-386-cgo), type Msghdr struct, Iovlen int32
  9424  pkg syscall (darwin-386-cgo), type Msghdr struct, Name *uint8
  9425  pkg syscall (darwin-386-cgo), type Msghdr struct, Namelen uint32
  9426  pkg syscall (darwin-386-cgo), type Radvisory_t struct
  9427  pkg syscall (darwin-386-cgo), type Radvisory_t struct, Count int32
  9428  pkg syscall (darwin-386-cgo), type Radvisory_t struct, Offset int64
  9429  pkg syscall (darwin-386-cgo), type RawSockaddr struct, Data [14]int8
  9430  pkg syscall (darwin-386-cgo), type RawSockaddr struct, Family uint8
  9431  pkg syscall (darwin-386-cgo), type RawSockaddr struct, Len uint8
  9432  pkg syscall (darwin-386-cgo), type RawSockaddrAny struct, Pad [92]int8
  9433  pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct
  9434  pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Alen uint8
  9435  pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Data [12]int8
  9436  pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Family uint8
  9437  pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Index uint16
  9438  pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Len uint8
  9439  pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Nlen uint8
  9440  pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Slen uint8
  9441  pkg syscall (darwin-386-cgo), type RawSockaddrDatalink struct, Type uint8
  9442  pkg syscall (darwin-386-cgo), type RawSockaddrInet4 struct, Family uint8
  9443  pkg syscall (darwin-386-cgo), type RawSockaddrInet4 struct, Len uint8
  9444  pkg syscall (darwin-386-cgo), type RawSockaddrInet4 struct, Zero [8]int8
  9445  pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct
  9446  pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Addr [16]uint8
  9447  pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Family uint8
  9448  pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Flowinfo uint32
  9449  pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Len uint8
  9450  pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Port uint16
  9451  pkg syscall (darwin-386-cgo), type RawSockaddrInet6 struct, Scope_id uint32
  9452  pkg syscall (darwin-386-cgo), type RawSockaddrUnix struct
  9453  pkg syscall (darwin-386-cgo), type RawSockaddrUnix struct, Family uint8
  9454  pkg syscall (darwin-386-cgo), type RawSockaddrUnix struct, Len uint8
  9455  pkg syscall (darwin-386-cgo), type RawSockaddrUnix struct, Path [104]int8
  9456  pkg syscall (darwin-386-cgo), type Rlimit struct
  9457  pkg syscall (darwin-386-cgo), type Rlimit struct, Cur uint64
  9458  pkg syscall (darwin-386-cgo), type Rlimit struct, Max uint64
  9459  pkg syscall (darwin-386-cgo), type RouteMessage struct
  9460  pkg syscall (darwin-386-cgo), type RouteMessage struct, Data []uint8
  9461  pkg syscall (darwin-386-cgo), type RouteMessage struct, Header RtMsghdr
  9462  pkg syscall (darwin-386-cgo), type RoutingMessage interface, unexported methods
  9463  pkg syscall (darwin-386-cgo), type RtMetrics struct
  9464  pkg syscall (darwin-386-cgo), type RtMetrics struct, Expire int32
  9465  pkg syscall (darwin-386-cgo), type RtMetrics struct, Filler [4]uint32
  9466  pkg syscall (darwin-386-cgo), type RtMetrics struct, Hopcount uint32
  9467  pkg syscall (darwin-386-cgo), type RtMetrics struct, Locks uint32
  9468  pkg syscall (darwin-386-cgo), type RtMetrics struct, Mtu uint32
  9469  pkg syscall (darwin-386-cgo), type RtMetrics struct, Pksent uint32
  9470  pkg syscall (darwin-386-cgo), type RtMetrics struct, Recvpipe uint32
  9471  pkg syscall (darwin-386-cgo), type RtMetrics struct, Rtt uint32
  9472  pkg syscall (darwin-386-cgo), type RtMetrics struct, Rttvar uint32
  9473  pkg syscall (darwin-386-cgo), type RtMetrics struct, Sendpipe uint32
  9474  pkg syscall (darwin-386-cgo), type RtMetrics struct, Ssthresh uint32
  9475  pkg syscall (darwin-386-cgo), type RtMsghdr struct
  9476  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Addrs int32
  9477  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Errno int32
  9478  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Flags int32
  9479  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Index uint16
  9480  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Inits uint32
  9481  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Msglen uint16
  9482  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Pad_cgo_0 [2]uint8
  9483  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Pid int32
  9484  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Rmx RtMetrics
  9485  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Seq int32
  9486  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Type uint8
  9487  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Use int32
  9488  pkg syscall (darwin-386-cgo), type RtMsghdr struct, Version uint8
  9489  pkg syscall (darwin-386-cgo), type Rusage struct, Idrss int32
  9490  pkg syscall (darwin-386-cgo), type Rusage struct, Inblock int32
  9491  pkg syscall (darwin-386-cgo), type Rusage struct, Isrss int32
  9492  pkg syscall (darwin-386-cgo), type Rusage struct, Ixrss int32
  9493  pkg syscall (darwin-386-cgo), type Rusage struct, Majflt int32
  9494  pkg syscall (darwin-386-cgo), type Rusage struct, Maxrss int32
  9495  pkg syscall (darwin-386-cgo), type Rusage struct, Minflt int32
  9496  pkg syscall (darwin-386-cgo), type Rusage struct, Msgrcv int32
  9497  pkg syscall (darwin-386-cgo), type Rusage struct, Msgsnd int32
  9498  pkg syscall (darwin-386-cgo), type Rusage struct, Nivcsw int32
  9499  pkg syscall (darwin-386-cgo), type Rusage struct, Nsignals int32
  9500  pkg syscall (darwin-386-cgo), type Rusage struct, Nswap int32
  9501  pkg syscall (darwin-386-cgo), type Rusage struct, Nvcsw int32
  9502  pkg syscall (darwin-386-cgo), type Rusage struct, Oublock int32
  9503  pkg syscall (darwin-386-cgo), type Rusage struct, Stime Timeval
  9504  pkg syscall (darwin-386-cgo), type Rusage struct, Utime Timeval
  9505  pkg syscall (darwin-386-cgo), type SockaddrDatalink struct
  9506  pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Alen uint8
  9507  pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Data [12]int8
  9508  pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Family uint8
  9509  pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Index uint16
  9510  pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Len uint8
  9511  pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Nlen uint8
  9512  pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Slen uint8
  9513  pkg syscall (darwin-386-cgo), type SockaddrDatalink struct, Type uint8
  9514  pkg syscall (darwin-386-cgo), type SocketControlMessage struct
  9515  pkg syscall (darwin-386-cgo), type SocketControlMessage struct, Data []uint8
  9516  pkg syscall (darwin-386-cgo), type SocketControlMessage struct, Header Cmsghdr
  9517  pkg syscall (darwin-386-cgo), type Stat_t struct
  9518  pkg syscall (darwin-386-cgo), type Stat_t struct, Atimespec Timespec
  9519  pkg syscall (darwin-386-cgo), type Stat_t struct, Birthtimespec Timespec
  9520  pkg syscall (darwin-386-cgo), type Stat_t struct, Blksize int32
  9521  pkg syscall (darwin-386-cgo), type Stat_t struct, Blocks int64
  9522  pkg syscall (darwin-386-cgo), type Stat_t struct, Ctimespec Timespec
  9523  pkg syscall (darwin-386-cgo), type Stat_t struct, Dev int32
  9524  pkg syscall (darwin-386-cgo), type Stat_t struct, Flags uint32
  9525  pkg syscall (darwin-386-cgo), type Stat_t struct, Gen uint32
  9526  pkg syscall (darwin-386-cgo), type Stat_t struct, Gid uint32
  9527  pkg syscall (darwin-386-cgo), type Stat_t struct, Ino uint64
  9528  pkg syscall (darwin-386-cgo), type Stat_t struct, Lspare int32
  9529  pkg syscall (darwin-386-cgo), type Stat_t struct, Mode uint16
  9530  pkg syscall (darwin-386-cgo), type Stat_t struct, Mtimespec Timespec
  9531  pkg syscall (darwin-386-cgo), type Stat_t struct, Nlink uint16
  9532  pkg syscall (darwin-386-cgo), type Stat_t struct, Qspare [2]int64
  9533  pkg syscall (darwin-386-cgo), type Stat_t struct, Rdev int32
  9534  pkg syscall (darwin-386-cgo), type Stat_t struct, Size int64
  9535  pkg syscall (darwin-386-cgo), type Stat_t struct, Uid uint32
  9536  pkg syscall (darwin-386-cgo), type Statfs_t struct
  9537  pkg syscall (darwin-386-cgo), type Statfs_t struct, Bavail uint64
  9538  pkg syscall (darwin-386-cgo), type Statfs_t struct, Bfree uint64
  9539  pkg syscall (darwin-386-cgo), type Statfs_t struct, Blocks uint64
  9540  pkg syscall (darwin-386-cgo), type Statfs_t struct, Bsize uint32
  9541  pkg syscall (darwin-386-cgo), type Statfs_t struct, Ffree uint64
  9542  pkg syscall (darwin-386-cgo), type Statfs_t struct, Files uint64
  9543  pkg syscall (darwin-386-cgo), type Statfs_t struct, Flags uint32
  9544  pkg syscall (darwin-386-cgo), type Statfs_t struct, Fsid Fsid
  9545  pkg syscall (darwin-386-cgo), type Statfs_t struct, Fssubtype uint32
  9546  pkg syscall (darwin-386-cgo), type Statfs_t struct, Fstypename [16]int8
  9547  pkg syscall (darwin-386-cgo), type Statfs_t struct, Iosize int32
  9548  pkg syscall (darwin-386-cgo), type Statfs_t struct, Mntfromname [1024]int8
  9549  pkg syscall (darwin-386-cgo), type Statfs_t struct, Mntonname [1024]int8
  9550  pkg syscall (darwin-386-cgo), type Statfs_t struct, Owner uint32
  9551  pkg syscall (darwin-386-cgo), type Statfs_t struct, Reserved [8]uint32
  9552  pkg syscall (darwin-386-cgo), type Statfs_t struct, Type uint32
  9553  pkg syscall (darwin-386-cgo), type SysProcAttr struct, Chroot string
  9554  pkg syscall (darwin-386-cgo), type SysProcAttr struct, Credential *Credential
  9555  pkg syscall (darwin-386-cgo), type SysProcAttr struct, Noctty bool
  9556  pkg syscall (darwin-386-cgo), type SysProcAttr struct, Ptrace bool
  9557  pkg syscall (darwin-386-cgo), type SysProcAttr struct, Setctty bool
  9558  pkg syscall (darwin-386-cgo), type SysProcAttr struct, Setpgid bool
  9559  pkg syscall (darwin-386-cgo), type SysProcAttr struct, Setsid bool
  9560  pkg syscall (darwin-386-cgo), type Timespec struct, Nsec int32
  9561  pkg syscall (darwin-386-cgo), type Timespec struct, Sec int32
  9562  pkg syscall (darwin-386-cgo), type Timeval struct, Sec int32
  9563  pkg syscall (darwin-386-cgo), type Timeval struct, Usec int32
  9564  pkg syscall (darwin-386-cgo), type Timeval32 [0]uint8
  9565  pkg syscall (darwin-386-cgo), type WaitStatus uint32
  9566  pkg syscall (darwin-386-cgo), var Stderr int
  9567  pkg syscall (darwin-386-cgo), var Stdin int
  9568  pkg syscall (darwin-386-cgo), var Stdout int
  9569  pkg syscall (darwin-amd64), const AF_APPLETALK ideal-int
  9570  pkg syscall (darwin-amd64), const AF_CCITT ideal-int
  9571  pkg syscall (darwin-amd64), const AF_CHAOS ideal-int
  9572  pkg syscall (darwin-amd64), const AF_CNT ideal-int
  9573  pkg syscall (darwin-amd64), const AF_COIP ideal-int
  9574  pkg syscall (darwin-amd64), const AF_DATAKIT ideal-int
  9575  pkg syscall (darwin-amd64), const AF_DECnet ideal-int
  9576  pkg syscall (darwin-amd64), const AF_DLI ideal-int
  9577  pkg syscall (darwin-amd64), const AF_E164 ideal-int
  9578  pkg syscall (darwin-amd64), const AF_ECMA ideal-int
  9579  pkg syscall (darwin-amd64), const AF_HYLINK ideal-int
  9580  pkg syscall (darwin-amd64), const AF_IEEE80211 ideal-int
  9581  pkg syscall (darwin-amd64), const AF_IMPLINK ideal-int
  9582  pkg syscall (darwin-amd64), const AF_IPX ideal-int
  9583  pkg syscall (darwin-amd64), const AF_ISDN ideal-int
  9584  pkg syscall (darwin-amd64), const AF_ISO ideal-int
  9585  pkg syscall (darwin-amd64), const AF_LAT ideal-int
  9586  pkg syscall (darwin-amd64), const AF_LINK ideal-int
  9587  pkg syscall (darwin-amd64), const AF_LOCAL ideal-int
  9588  pkg syscall (darwin-amd64), const AF_MAX ideal-int
  9589  pkg syscall (darwin-amd64), const AF_NATM ideal-int
  9590  pkg syscall (darwin-amd64), const AF_NDRV ideal-int
  9591  pkg syscall (darwin-amd64), const AF_NETBIOS ideal-int
  9592  pkg syscall (darwin-amd64), const AF_NS ideal-int
  9593  pkg syscall (darwin-amd64), const AF_OSI ideal-int
  9594  pkg syscall (darwin-amd64), const AF_PPP ideal-int
  9595  pkg syscall (darwin-amd64), const AF_PUP ideal-int
  9596  pkg syscall (darwin-amd64), const AF_RESERVED_36 ideal-int
  9597  pkg syscall (darwin-amd64), const AF_ROUTE ideal-int
  9598  pkg syscall (darwin-amd64), const AF_SIP ideal-int
  9599  pkg syscall (darwin-amd64), const AF_SNA ideal-int
  9600  pkg syscall (darwin-amd64), const AF_SYSTEM ideal-int
  9601  pkg syscall (darwin-amd64), const BIOCFLUSH ideal-int
  9602  pkg syscall (darwin-amd64), const BIOCGBLEN ideal-int
  9603  pkg syscall (darwin-amd64), const BIOCGDLT ideal-int
  9604  pkg syscall (darwin-amd64), const BIOCGDLTLIST ideal-int
  9605  pkg syscall (darwin-amd64), const BIOCGETIF ideal-int
  9606  pkg syscall (darwin-amd64), const BIOCGHDRCMPLT ideal-int
  9607  pkg syscall (darwin-amd64), const BIOCGRSIG ideal-int
  9608  pkg syscall (darwin-amd64), const BIOCGRTIMEOUT ideal-int
  9609  pkg syscall (darwin-amd64), const BIOCGSEESENT ideal-int
  9610  pkg syscall (darwin-amd64), const BIOCGSTATS ideal-int
  9611  pkg syscall (darwin-amd64), const BIOCIMMEDIATE ideal-int
  9612  pkg syscall (darwin-amd64), const BIOCPROMISC ideal-int
  9613  pkg syscall (darwin-amd64), const BIOCSBLEN ideal-int
  9614  pkg syscall (darwin-amd64), const BIOCSDLT ideal-int
  9615  pkg syscall (darwin-amd64), const BIOCSETF ideal-int
  9616  pkg syscall (darwin-amd64), const BIOCSETIF ideal-int
  9617  pkg syscall (darwin-amd64), const BIOCSHDRCMPLT ideal-int
  9618  pkg syscall (darwin-amd64), const BIOCSRSIG ideal-int
  9619  pkg syscall (darwin-amd64), const BIOCSRTIMEOUT ideal-int
  9620  pkg syscall (darwin-amd64), const BIOCSSEESENT ideal-int
  9621  pkg syscall (darwin-amd64), const BIOCVERSION ideal-int
  9622  pkg syscall (darwin-amd64), const BPF_A ideal-int
  9623  pkg syscall (darwin-amd64), const BPF_ABS ideal-int
  9624  pkg syscall (darwin-amd64), const BPF_ADD ideal-int
  9625  pkg syscall (darwin-amd64), const BPF_ALIGNMENT ideal-int
  9626  pkg syscall (darwin-amd64), const BPF_ALU ideal-int
  9627  pkg syscall (darwin-amd64), const BPF_AND ideal-int
  9628  pkg syscall (darwin-amd64), const BPF_B ideal-int
  9629  pkg syscall (darwin-amd64), const BPF_DIV ideal-int
  9630  pkg syscall (darwin-amd64), const BPF_H ideal-int
  9631  pkg syscall (darwin-amd64), const BPF_IMM ideal-int
  9632  pkg syscall (darwin-amd64), const BPF_IND ideal-int
  9633  pkg syscall (darwin-amd64), const BPF_JA ideal-int
  9634  pkg syscall (darwin-amd64), const BPF_JEQ ideal-int
  9635  pkg syscall (darwin-amd64), const BPF_JGE ideal-int
  9636  pkg syscall (darwin-amd64), const BPF_JGT ideal-int
  9637  pkg syscall (darwin-amd64), const BPF_JMP ideal-int
  9638  pkg syscall (darwin-amd64), const BPF_JSET ideal-int
  9639  pkg syscall (darwin-amd64), const BPF_K ideal-int
  9640  pkg syscall (darwin-amd64), const BPF_LD ideal-int
  9641  pkg syscall (darwin-amd64), const BPF_LDX ideal-int
  9642  pkg syscall (darwin-amd64), const BPF_LEN ideal-int
  9643  pkg syscall (darwin-amd64), const BPF_LSH ideal-int
  9644  pkg syscall (darwin-amd64), const BPF_MAJOR_VERSION ideal-int
  9645  pkg syscall (darwin-amd64), const BPF_MAXBUFSIZE ideal-int
  9646  pkg syscall (darwin-amd64), const BPF_MAXINSNS ideal-int
  9647  pkg syscall (darwin-amd64), const BPF_MEM ideal-int
  9648  pkg syscall (darwin-amd64), const BPF_MEMWORDS ideal-int
  9649  pkg syscall (darwin-amd64), const BPF_MINBUFSIZE ideal-int
  9650  pkg syscall (darwin-amd64), const BPF_MINOR_VERSION ideal-int
  9651  pkg syscall (darwin-amd64), const BPF_MISC ideal-int
  9652  pkg syscall (darwin-amd64), const BPF_MSH ideal-int
  9653  pkg syscall (darwin-amd64), const BPF_MUL ideal-int
  9654  pkg syscall (darwin-amd64), const BPF_NEG ideal-int
  9655  pkg syscall (darwin-amd64), const BPF_OR ideal-int
  9656  pkg syscall (darwin-amd64), const BPF_RELEASE ideal-int
  9657  pkg syscall (darwin-amd64), const BPF_RET ideal-int
  9658  pkg syscall (darwin-amd64), const BPF_RSH ideal-int
  9659  pkg syscall (darwin-amd64), const BPF_ST ideal-int
  9660  pkg syscall (darwin-amd64), const BPF_STX ideal-int
  9661  pkg syscall (darwin-amd64), const BPF_SUB ideal-int
  9662  pkg syscall (darwin-amd64), const BPF_TAX ideal-int
  9663  pkg syscall (darwin-amd64), const BPF_TXA ideal-int
  9664  pkg syscall (darwin-amd64), const BPF_W ideal-int
  9665  pkg syscall (darwin-amd64), const BPF_X ideal-int
  9666  pkg syscall (darwin-amd64), const CTL_MAXNAME ideal-int
  9667  pkg syscall (darwin-amd64), const CTL_NET ideal-int
  9668  pkg syscall (darwin-amd64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
  9669  pkg syscall (darwin-amd64), const DLT_ARCNET ideal-int
  9670  pkg syscall (darwin-amd64), const DLT_ATM_CLIP ideal-int
  9671  pkg syscall (darwin-amd64), const DLT_ATM_RFC1483 ideal-int
  9672  pkg syscall (darwin-amd64), const DLT_AX25 ideal-int
  9673  pkg syscall (darwin-amd64), const DLT_CHAOS ideal-int
  9674  pkg syscall (darwin-amd64), const DLT_CHDLC ideal-int
  9675  pkg syscall (darwin-amd64), const DLT_C_HDLC ideal-int
  9676  pkg syscall (darwin-amd64), const DLT_EN10MB ideal-int
  9677  pkg syscall (darwin-amd64), const DLT_EN3MB ideal-int
  9678  pkg syscall (darwin-amd64), const DLT_FDDI ideal-int
  9679  pkg syscall (darwin-amd64), const DLT_IEEE802 ideal-int
  9680  pkg syscall (darwin-amd64), const DLT_IEEE802_11 ideal-int
  9681  pkg syscall (darwin-amd64), const DLT_IEEE802_11_RADIO ideal-int
  9682  pkg syscall (darwin-amd64), const DLT_IEEE802_11_RADIO_AVS ideal-int
  9683  pkg syscall (darwin-amd64), const DLT_LINUX_SLL ideal-int
  9684  pkg syscall (darwin-amd64), const DLT_LOOP ideal-int
  9685  pkg syscall (darwin-amd64), const DLT_NULL ideal-int
  9686  pkg syscall (darwin-amd64), const DLT_PFLOG ideal-int
  9687  pkg syscall (darwin-amd64), const DLT_PFSYNC ideal-int
  9688  pkg syscall (darwin-amd64), const DLT_PPP ideal-int
  9689  pkg syscall (darwin-amd64), const DLT_PPP_BSDOS ideal-int
  9690  pkg syscall (darwin-amd64), const DLT_PPP_SERIAL ideal-int